| 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/ios_sdk.gni") | 5 import("//build/config/ios/ios_sdk.gni") |
| 6 import("//build/config/ios/rules.gni") | 6 import("//build/config/ios/rules.gni") |
| 7 | 7 |
| 8 config("config") { | 8 config("config") { |
| 9 include_dirs = [ "src/EarlGrey" ] | 9 include_dirs = [ "src/EarlGrey" ] |
| 10 } | 10 } |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 "src/EarlGrey/Provider/GREYDataEnumerator.h", | 226 "src/EarlGrey/Provider/GREYDataEnumerator.h", |
| 227 "src/EarlGrey/Provider/GREYProvider.h", | 227 "src/EarlGrey/Provider/GREYProvider.h", |
| 228 "src/EarlGrey/Synchronization/GREYNSTimerIdlingResource.h", | 228 "src/EarlGrey/Synchronization/GREYNSTimerIdlingResource.h", |
| 229 "src/EarlGrey/Synchronization/GREYOperationQueueIdlingResource.h", | 229 "src/EarlGrey/Synchronization/GREYOperationQueueIdlingResource.h", |
| 230 "src/EarlGrey/Synchronization/GREYDispatchQueueIdlingResource.h", | 230 "src/EarlGrey/Synchronization/GREYDispatchQueueIdlingResource.h", |
| 231 "src/EarlGrey/Synchronization/GREYSyncAPI.h", | 231 "src/EarlGrey/Synchronization/GREYSyncAPI.h", |
| 232 "src/EarlGrey/Synchronization/GREYCondition.h", | 232 "src/EarlGrey/Synchronization/GREYCondition.h", |
| 233 "src/EarlGrey/Synchronization/GREYUIThreadExecutor.h", | 233 "src/EarlGrey/Synchronization/GREYUIThreadExecutor.h", |
| 234 ] | 234 ] |
| 235 deps = [ | 235 deps = [ |
| 236 "//build/config/ios:xctest", |
| 236 "//ios/third_party/fishhook", | 237 "//ios/third_party/fishhook", |
| 237 "//third_party/google_toolbox_for_mac", | 238 "//third_party/google_toolbox_for_mac", |
| 238 ] | 239 ] |
| 239 public_deps = [ | 240 public_deps = [ |
| 240 "//ios/third_party/ochamcrest:ochamcrest+link", | 241 "//ios/third_party/ochamcrest:ochamcrest+link", |
| 241 ] | 242 ] |
| 242 precompiled_header = "src/EarlGrey.pch" | 243 precompiled_header = "src/EarlGrey.pch" |
| 243 precompiled_source = "src/EarlGrey.pch" | 244 precompiled_source = "src/EarlGrey.pch" |
| 244 | 245 |
| 245 libs = [ | 246 libs = [ |
| 246 "CoreGraphics.framework", | 247 "CoreGraphics.framework", |
| 247 "Foundation.framework", | 248 "Foundation.framework", |
| 248 "IOKit.framework", | 249 "IOKit.framework", |
| 249 "QuartzCore.framework", | 250 "QuartzCore.framework", |
| 250 "UIKit.framework", | 251 "UIKit.framework", |
| 251 "XCTest.framework", | 252 "XCTest.framework", |
| 252 ] | 253 ] |
| 253 | 254 |
| 254 public_configs = [ | 255 public_configs = [ ":config" ] |
| 255 ":config", | 256 |
| 256 "//build/config/ios:xctest_config", | 257 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
| 258 configs += [ |
| 259 "//build/config/compiler:enable_arc", |
| 260 "//build/config/gcc:symbol_visibility_default", |
| 257 ] | 261 ] |
| 258 | |
| 259 configs += [ "//build/config/compiler:enable_arc" ] | |
| 260 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | |
| 261 configs += [ "//build/config/gcc:symbol_visibility_default" ] | |
| 262 } | 262 } |
| OLD | NEW |