Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Side by Side Diff: ios/third_party/earl_grey/earl_grey.gyp

Issue 1902373003: Add support for ios_web_shell xctest for devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Info.plist -> Module-Info.plist Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ios/third_party/ochamcrest/ochamcrest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'EarlGrey', 8 'target_name': 'EarlGrey',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'mac_bundle': 1, 10 'mac_bundle': 1,
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 ], 262 ],
263 'dependencies': [ 263 'dependencies': [
264 '../../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp: google_toolbox_for_mac', 264 '../../../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp: google_toolbox_for_mac',
265 '../fishhook/fishhook.gyp:fishhook', 265 '../fishhook/fishhook.gyp:fishhook',
266 '../ochamcrest/ochamcrest.gyp:OCHamcrest', 266 '../ochamcrest/ochamcrest.gyp:OCHamcrest',
267 ], 267 ],
268 'xcode_settings': { 268 'xcode_settings': {
269 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 269 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
270 'USE_HEADERMAP': 'YES', 270 'USE_HEADERMAP': 'YES',
271 'CLANG_ENABLE_OBJC_ARC': 'YES', 271 'CLANG_ENABLE_OBJC_ARC': 'YES',
272 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
273 'BUNDLE_IDENTIFIER': 'com.google.earlgrey.EarlGrey',
274 'INFOPLIST_FILE': 'src/EarlGrey-Info.plist',
272 }, 275 },
273 'link_settings': { 276 'link_settings': {
274 'libraries': [ 277 'libraries': [
275 'CoreGraphics.framework', 278 'CoreGraphics.framework',
276 'Foundation.framework', 279 'Foundation.framework',
277 'IOKit.framework', 280 'IOKit.framework',
278 'QuartzCore.framework', 281 'QuartzCore.framework',
279 'UIKit.framework', 282 'UIKit.framework',
280 'XCTest.framework', 283 'XCTest.framework',
281 ], 284 ],
(...skipping 17 matching lines...) Expand all
299 # EarlGrey and its dependencies need to link to XCTest.framework 302 # EarlGrey and its dependencies need to link to XCTest.framework
300 # which is not under SDKROOT. 303 # which is not under SDKROOT.
301 '$(SDKROOT)/../../Library/Frameworks', 304 '$(SDKROOT)/../../Library/Frameworks',
302 '<(PRODUCT_DIR)' 305 '<(PRODUCT_DIR)'
303 ], 306 ],
304 }, 307 },
305 }, 308 },
306 ], 309 ],
307 } 310 }
308 311
OLDNEW
« no previous file with comments | « no previous file | ios/third_party/ochamcrest/ochamcrest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698