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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 272 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', |
273 'BUNDLE_IDENTIFIER': 'com.google.earlgrey.EarlGrey', | 273 'BUNDLE_IDENTIFIER': 'com.google.earlgrey.EarlGrey', |
274 'INFOPLIST_FILE': 'src/EarlGrey-Info.plist', | 274 'INFOPLIST_FILE': 'src/EarlGrey-Info.plist', |
| 275 'DYLIB_INSTALL_NAME_BASE': '@rpath', |
| 276 'OTHER_LDFLAGS': [ |
| 277 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', |
| 278 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' |
| 279 ] |
275 }, | 280 }, |
276 'link_settings': { | 281 'link_settings': { |
277 'libraries': [ | 282 'libraries': [ |
278 'CoreGraphics.framework', | 283 'CoreGraphics.framework', |
279 'Foundation.framework', | 284 'Foundation.framework', |
280 'IOKit.framework', | 285 'IOKit.framework', |
281 'QuartzCore.framework', | 286 'QuartzCore.framework', |
282 'UIKit.framework', | 287 'UIKit.framework', |
283 'XCTest.framework', | 288 'XCTest.framework', |
284 ], | 289 ], |
(...skipping 17 matching lines...) Expand all Loading... |
302 # EarlGrey and its dependencies need to link to XCTest.framework | 307 # EarlGrey and its dependencies need to link to XCTest.framework |
303 # which is not under SDKROOT. | 308 # which is not under SDKROOT. |
304 '$(SDKROOT)/../../Library/Frameworks', | 309 '$(SDKROOT)/../../Library/Frameworks', |
305 '<(PRODUCT_DIR)' | 310 '<(PRODUCT_DIR)' |
306 ], | 311 ], |
307 }, | 312 }, |
308 }, | 313 }, |
309 ], | 314 ], |
310 } | 315 } |
311 | 316 |
OLD | NEW |