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/mac/tweak_info_plist.gni") | 6 import("//build/mac/tweak_info_plist.gni") |
7 import("//ios/build/chrome_build.gni") | 7 import("//ios/build/chrome_build.gni") |
8 import("//ios/public/provider/chrome/browser/build_config.gni") | 8 import("//ios/public/provider/chrome/browser/build_config.gni") |
9 | 9 |
10 # This empty target is there to help with upstreaming by removing a manual | |
11 # step from the process (updating the //ios:all target). It will be changed | |
12 # to a real target as part of upstreaming. | |
13 group("chrome") { | |
14 } | |
15 | |
16 # This empty target is there to help with upstreaming by removing a manual | |
17 # step from the process (updating the //ios:all target). It will be changed | |
18 # to a real target as part of upstreaming. | |
19 group("chrome_clean_skeleton") { | |
20 } | |
21 | |
22 source_set("app") { | 10 source_set("app") { |
23 sources = [ | 11 sources = [ |
24 "deferred_initialization_runner.h", | 12 "deferred_initialization_runner.h", |
25 "deferred_initialization_runner.mm", | 13 "deferred_initialization_runner.mm", |
26 "safe_mode_crashing_modules_config.h", | 14 "safe_mode_crashing_modules_config.h", |
27 "safe_mode_crashing_modules_config.mm", | 15 "safe_mode_crashing_modules_config.mm", |
28 "safe_mode_util.cc", | 16 "safe_mode_util.cc", |
29 "safe_mode_util.h", | 17 "safe_mode_util.h", |
30 ] | 18 ] |
31 | 19 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 plist_templates = [ "resources/Chrome.entitlements" ] | 89 plist_templates = [ "resources/Chrome.entitlements" ] |
102 if (ios_chrome_entitlements_additions != []) { | 90 if (ios_chrome_entitlements_additions != []) { |
103 plist_templates += ios_chrome_entitlements_additions | 91 plist_templates += ios_chrome_entitlements_additions |
104 } | 92 } |
105 if (!ios_automatically_manage_certs) { | 93 if (!ios_automatically_manage_certs) { |
106 plist_templates += [ "resources/AssociatedDomains.entitlements" ] | 94 plist_templates += [ "resources/AssociatedDomains.entitlements" ] |
107 } | 95 } |
108 substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ] | 96 substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ] |
109 output_name = "$target_gen_dir/$chromium_short_name.entitlements" | 97 output_name = "$target_gen_dir/$chromium_short_name.entitlements" |
110 } | 98 } |
OLD | NEW |