| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ios/rules.gni") | 5 import("//build/config/ios/rules.gni") |
| 6 import("//build/config/mac/base_rules.gni") | 6 import("//build/config/mac/base_rules.gni") |
| 7 import("//build/mac/tweak_info_plist.gni") | 7 import("//build/mac/tweak_info_plist.gni") |
| 8 import("//ios/build/chrome_build.gni") | 8 import("//ios/build/chrome_build.gni") |
| 9 import("//ios/public/provider/chrome/browser/build_config.gni") | 9 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 deps = [ | 22 deps = [ |
| 23 ":resources", | 23 ":resources", |
| 24 "//base", | 24 "//base", |
| 25 ios_packed_resources_target, | 25 ios_packed_resources_target, |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 libs = [ "Foundation.framework" ] | 28 libs = [ "Foundation.framework" ] |
| 29 } | 29 } |
| 30 | 30 |
| 31 source_set("unit_tests") { | 31 source_set("unit_tests") { |
| 32 configs += [ "//build/config/compiler:enable_arc" ] |
| 32 testonly = true | 33 testonly = true |
| 33 sources = [ | 34 sources = [ |
| 34 "chrome_app_startup_parameters_unittest.mm", | 35 "chrome_app_startup_parameters_unittest.mm", |
| 35 "chrome_overlay_window_testing.h", | 36 "chrome_overlay_window_testing.h", |
| 36 "deferred_initialization_runner_unittest.mm", | 37 "deferred_initialization_runner_unittest.mm", |
| 37 "main_application_delegate_unittest.mm", | 38 "main_application_delegate_unittest.mm", |
| 38 "main_controller_unittest.mm", | 39 "main_controller_unittest.mm", |
| 39 "safe_mode_util_unittest.cc", | 40 "safe_mode_util_unittest.cc", |
| 40 ] | 41 ] |
| 41 deps = [ | 42 deps = [ |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ] | 356 ] |
| 356 sources = [ | 357 sources = [ |
| 357 "$root_out_dir/share_extension.appex", | 358 "$root_out_dir/share_extension.appex", |
| 358 ] | 359 ] |
| 359 outputs = [ | 360 outputs = [ |
| 360 "{{bundle_plugins_dir}}/{{source_file_part}}", | 361 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 361 ] | 362 ] |
| 362 } | 363 } |
| 363 } | 364 } |
| 364 } | 365 } |
| OLD | NEW |