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

Side by Side Diff: build/config/ios/rules.gni

Issue 2317703002: Enable use of intermediate source set by iOS templates. (Closed)
Patch Set: Created 4 years, 3 months 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 | « no previous file | no next file » | 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/ios_sdk.gni") 5 import("//build/config/ios/ios_sdk.gni")
6 import("//build/config/mac/base_rules.gni") 6 import("//build/config/mac/base_rules.gni")
7 import("//build/config/mac/symbols.gni") 7 import("//build/config/mac/symbols.gni")
8 8
9 # Control whether an intermediate source_set is used when building executables 9 # Control whether an intermediate source_set is used when building executables
10 # and shared_libraries for ios_app_bundle and ios_framework_bundle. This is a 10 # and shared_libraries for ios_app_bundle and ios_framework_bundle. This is a
11 # temporary flag that will be removed once scoped_nsobject_unittest{_arc}.mm 11 # temporary flag that will be removed once scoped_nsobject_unittest{_arc}.mm
12 # tests are passing with this flag set to true (see crbug.com/637065) 12 # tests are passing with this flag set to true (see crbug.com/637065)
13 _use_intermediate_source_set = false 13 _use_intermediate_source_set = true
14 14
15 # Invokes lipo on multiple arch-specific binaries to create a fat binary. 15 # Invokes lipo on multiple arch-specific binaries to create a fat binary.
16 # 16 #
17 # Arguments 17 # Arguments
18 # 18 #
19 # arch_binary_target 19 # arch_binary_target
20 # name of the target generating the arch-specific binaries, they must 20 # name of the target generating the arch-specific binaries, they must
21 # be named $target_out_dir/$toolchain_cpu/$arch_binary_output. 21 # be named $target_out_dir/$toolchain_cpu/$arch_binary_output.
22 # 22 #
23 # arch_binary_output 23 # arch_binary_output
(...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 "-rpath", 1361 "-rpath",
1362 "-Xlinker", 1362 "-Xlinker",
1363 "@loader_path/Frameworks", 1363 "@loader_path/Frameworks",
1364 ] 1364 ]
1365 } 1365 }
1366 } 1366 }
1367 1367
1368 set_defaults("ios_xctest_test") { 1368 set_defaults("ios_xctest_test") {
1369 configs = default_executable_configs 1369 configs = default_executable_configs
1370 } 1370 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698