| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 } | 57 } |
| 58 | 58 |
| 59 source_set("tests_hook") { | 59 source_set("tests_hook") { |
| 60 # This target is intentionally not test-only, as the main app depends on it. | 60 # This target is intentionally not test-only, as the main app depends on it. |
| 61 sources = [ | 61 sources = [ |
| 62 "tests_hook.h", | 62 "tests_hook.h", |
| 63 ] | 63 ] |
| 64 } | 64 } |
| 65 | 65 |
| 66 source_set("tests_fake_hook") { | 66 source_set("tests_fake_hook") { |
| 67 configs += [ "//build/config/compiler:enable_arc" ] |
| 68 |
| 67 # This target is intentionally not test-only, as the main app depends on it. | 69 # This target is intentionally not test-only, as the main app depends on it. |
| 68 sources = [ | 70 sources = [ |
| 69 "tests_fake_hook.mm", | 71 "tests_fake_hook.mm", |
| 70 ] | 72 ] |
| 71 deps = [ | 73 deps = [ |
| 72 ":tests_hook", | 74 ":tests_hook", |
| 73 ] | 75 ] |
| 74 } | 76 } |
| 75 | 77 |
| 76 bundle_data("resources") { | 78 bundle_data("resources") { |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 ] | 338 ] |
| 337 sources = [ | 339 sources = [ |
| 338 "$root_out_dir/share_extension.appex", | 340 "$root_out_dir/share_extension.appex", |
| 339 ] | 341 ] |
| 340 outputs = [ | 342 outputs = [ |
| 341 "{{bundle_plugins_dir}}/{{source_file_part}}", | 343 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 342 ] | 344 ] |
| 343 } | 345 } |
| 344 } | 346 } |
| 345 } | 347 } |
| OLD | NEW |