Chromium Code Reviews| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 69 "tests_fake_hook.mm", | 69 "tests_fake_hook.mm", |
| 70 ] | 70 ] |
| 71 deps = [ | 71 deps = [ |
| 72 ":tests_hook", | 72 ":tests_hook", |
| 73 ] | 73 ] |
| 74 } | 74 } |
| 75 | 75 |
| 76 bundle_data("resources") { | 76 bundle_data("resources") { |
| 77 visibility = [ ":app" ] | 77 visibility = [ ":app" ] |
| 78 sources = [ | 78 sources = [ |
| 79 "resources/PasswordManagerExtensions.plist", | |
|
rohitrao (ping after 24h)
2017/04/17 16:24:54
Could this file live next to the code that uses it
| |
| 79 "resources/SafeModeCrashingModules.plist", | 80 "resources/SafeModeCrashingModules.plist", |
| 80 ] | 81 ] |
| 81 outputs = [ | 82 outputs = [ |
| 82 "{{bundle_resources_dir}}/{{source_file_part}}", | 83 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 83 ] | 84 ] |
| 84 } | 85 } |
| 85 | 86 |
| 86 tweak_info_plist("info_plist") { | 87 tweak_info_plist("info_plist") { |
| 87 info_plists = [ | 88 info_plists = [ |
| 88 "resources/Info.plist", | 89 "resources/Info.plist", |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 341 ] | 342 ] |
| 342 sources = [ | 343 sources = [ |
| 343 "$root_out_dir/share_extension.appex", | 344 "$root_out_dir/share_extension.appex", |
| 344 ] | 345 ] |
| 345 outputs = [ | 346 outputs = [ |
| 346 "{{bundle_plugins_dir}}/{{source_file_part}}", | 347 "{{bundle_plugins_dir}}/{{source_file_part}}", |
| 347 ] | 348 ] |
| 348 } | 349 } |
| 349 } | 350 } |
| 350 } | 351 } |
| OLD | NEW |