| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/sysroot.gni") | 6 import("//build/config/sysroot.gni") |
| 7 import("//build/toolchain/toolchain.gni") | 7 import("//build/toolchain/toolchain.gni") |
| 8 | 8 |
| 9 # This is included by reference in the //build/config/compiler:runtime_library | 9 # This is included by reference in the //build/config/compiler:runtime_library |
| 10 # config that is applied to all targets. It is here to separate out the logic | 10 # config that is applied to all targets. It is here to separate out the logic |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 ] | 53 ] |
| 54 | 54 |
| 55 cflags = common_flags | 55 cflags = common_flags |
| 56 ldflags = common_flags | 56 ldflags = common_flags |
| 57 | 57 |
| 58 libs = [ | 58 libs = [ |
| 59 "Foundation.framework", | 59 "Foundation.framework", |
| 60 "XCTest.framework", | 60 "XCTest.framework", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 |
| 64 group("xctest") { |
| 65 public_configs = [ ":xctest_config" ] |
| 66 } |
| OLD | NEW |