Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: ios/chrome/app/BUILD.gn

Issue 2570523002: Refactor //ios:all target in preparation of upstreaming. (Closed)
Patch Set: Rebase Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
10 source_set("app") { 22 source_set("app") {
11 sources = [ 23 sources = [
12 "deferred_initialization_runner.h", 24 "deferred_initialization_runner.h",
13 "deferred_initialization_runner.mm", 25 "deferred_initialization_runner.mm",
14 "safe_mode_crashing_modules_config.h", 26 "safe_mode_crashing_modules_config.h",
15 "safe_mode_crashing_modules_config.mm", 27 "safe_mode_crashing_modules_config.mm",
16 "safe_mode_util.cc", 28 "safe_mode_util.cc",
17 "safe_mode_util.h", 29 "safe_mode_util.h",
18 ] 30 ]
19 31
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 plist_templates = [ "resources/Chrome.entitlements" ] 101 plist_templates = [ "resources/Chrome.entitlements" ]
90 if (ios_chrome_entitlements_additions != []) { 102 if (ios_chrome_entitlements_additions != []) {
91 plist_templates += ios_chrome_entitlements_additions 103 plist_templates += ios_chrome_entitlements_additions
92 } 104 }
93 if (!ios_automatically_manage_certs) { 105 if (!ios_automatically_manage_certs) {
94 plist_templates += [ "resources/AssociatedDomains.entitlements" ] 106 plist_templates += [ "resources/AssociatedDomains.entitlements" ]
95 } 107 }
96 substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ] 108 substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ]
97 output_name = "$target_gen_dir/$chromium_short_name.entitlements" 109 output_name = "$target_gen_dir/$chromium_short_name.entitlements"
98 } 110 }
OLDNEW
« no previous file with comments | « ios/chrome/BUILD.gn ('k') | ios/chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698