1# Copyright 2023 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//build/config/mac/rules.gni") 6 7executable("launch_application_test_helper") { 8 configs += [ "//build/config/compiler:wexit_time_destructors" ] 9 sources = [ "test/launch_application_test_helper_main.m" ] 10 11 # This executable gets moved around at runtime; linking against default deps 12 # could result in libraries not being found in component builds. Fortunately 13 # this executable doesn't actually need anything from default deps. 14 no_default_deps = true 15 16 frameworks = [ 17 "AppKit.framework", 18 "CoreFoundation.framework", 19 "Foundation.framework", 20 ] 21} 22