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 { | 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 Loading... |
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 Loading... |
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 |
OLD | NEW |