| 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/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 Loading... |
| 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 } |
| OLD | NEW |