| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "src/EarlGrey/Synchronization/GREYDispatchQueueIdlingResource.h", | 231 "src/EarlGrey/Synchronization/GREYDispatchQueueIdlingResource.h", |
| 232 "src/EarlGrey/Synchronization/GREYSyncAPI.h", | 232 "src/EarlGrey/Synchronization/GREYSyncAPI.h", |
| 233 "src/EarlGrey/Synchronization/GREYCondition.h", | 233 "src/EarlGrey/Synchronization/GREYCondition.h", |
| 234 "src/EarlGrey/Synchronization/GREYUIThreadExecutor.h", | 234 "src/EarlGrey/Synchronization/GREYUIThreadExecutor.h", |
| 235 ] | 235 ] |
| 236 deps = [ | 236 deps = [ |
| 237 "//ios/third_party/fishhook", | 237 "//ios/third_party/fishhook", |
| 238 "//third_party/google_toolbox_for_mac", | 238 "//third_party/google_toolbox_for_mac", |
| 239 ] | 239 ] |
| 240 public_deps = [ | 240 public_deps = [ |
| 241 "//ios/third_party/ochamcrest", | 241 "//ios/third_party/ochamcrest:ochamcrest+link", |
| 242 ] | 242 ] |
| 243 | 243 |
| 244 libs = [ | 244 libs = [ |
| 245 "CoreGraphics.framework", | 245 "CoreGraphics.framework", |
| 246 "Foundation.framework", | 246 "Foundation.framework", |
| 247 "IOKit.framework", | 247 "IOKit.framework", |
| 248 "QuartzCore.framework", | 248 "QuartzCore.framework", |
| 249 "UIKit.framework", | 249 "UIKit.framework", |
| 250 "XCTest.framework", | 250 "XCTest.framework", |
| 251 ] | 251 ] |
| 252 | 252 |
| 253 public_configs = [ ":config" ] | 253 public_configs = [ ":config" ] |
| 254 configs += [ "//build/config/compiler:enable_arc" ] | 254 configs += [ "//build/config/compiler:enable_arc" ] |
| 255 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | 255 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
| 256 } | 256 } |
| OLD | NEW |