| 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 ios_framework_bundle("OCHamcrest") { |
| 8 output_name = "OCHamcrest" | |
| 9 | |
| 10 testonly = true | 8 testonly = true |
| 11 sources = [ | 9 sources = [ |
| 12 "src/Source/Core/HCAssertThat.h", | 10 "src/Source/Core/HCAssertThat.h", |
| 13 "src/Source/Core/HCAssertThat.m", | 11 "src/Source/Core/HCAssertThat.m", |
| 14 "src/Source/Core/HCBaseDescription.h", | 12 "src/Source/Core/HCBaseDescription.h", |
| 15 "src/Source/Core/HCBaseDescription.m", | 13 "src/Source/Core/HCBaseDescription.m", |
| 16 "src/Source/Core/HCBaseMatcher.h", | 14 "src/Source/Core/HCBaseMatcher.h", |
| 17 "src/Source/Core/HCBaseMatcher.m", | 15 "src/Source/Core/HCBaseMatcher.m", |
| 18 "src/Source/Core/HCDescription.h", | 16 "src/Source/Core/HCDescription.h", |
| 19 "src/Source/Core/HCDiagnosingMatcher.h", | 17 "src/Source/Core/HCDiagnosingMatcher.h", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 ] | 222 ] |
| 225 | 223 |
| 226 libs = [ | 224 libs = [ |
| 227 "Foundation.framework", | 225 "Foundation.framework", |
| 228 "UIKit.framework", | 226 "UIKit.framework", |
| 229 ] | 227 ] |
| 230 | 228 |
| 231 configs += [ "//build/config/compiler:enable_arc" ] | 229 configs += [ "//build/config/compiler:enable_arc" ] |
| 232 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | 230 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
| 233 } | 231 } |
| OLD | NEW |