| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 6 |
| 7 ios_framework_bundle("ochamcrest") { | 7 group("ochamcrest") { |
| 8 testonly = true |
| 9 public_deps = [ |
| 10 ":OCHamcrest.framework", |
| 11 ] |
| 12 } |
| 13 |
| 14 ios_framework_bundle("OCHamcrest.framework") { |
| 8 testonly = true | 15 testonly = true |
| 9 output_name = "OCHamcrest" | 16 output_name = "OCHamcrest" |
| 10 sources = [ | 17 sources = [ |
| 11 "src/Source/Core/HCAssertThat.h", | 18 "src/Source/Core/HCAssertThat.h", |
| 12 "src/Source/Core/HCAssertThat.m", | 19 "src/Source/Core/HCAssertThat.m", |
| 13 "src/Source/Core/HCBaseDescription.h", | 20 "src/Source/Core/HCBaseDescription.h", |
| 14 "src/Source/Core/HCBaseDescription.m", | 21 "src/Source/Core/HCBaseDescription.m", |
| 15 "src/Source/Core/HCBaseMatcher.h", | 22 "src/Source/Core/HCBaseMatcher.h", |
| 16 "src/Source/Core/HCBaseMatcher.m", | 23 "src/Source/Core/HCBaseMatcher.m", |
| 17 "src/Source/Core/HCDescription.h", | 24 "src/Source/Core/HCDescription.h", |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 ] | 230 ] |
| 224 | 231 |
| 225 libs = [ | 232 libs = [ |
| 226 "Foundation.framework", | 233 "Foundation.framework", |
| 227 "UIKit.framework", | 234 "UIKit.framework", |
| 228 ] | 235 ] |
| 229 | 236 |
| 230 configs += [ "//build/config/compiler:enable_arc" ] | 237 configs += [ "//build/config/compiler:enable_arc" ] |
| 231 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | 238 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
| 232 } | 239 } |
| OLD | NEW |