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

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

Issue 1914253002: Set framework -install_name to rpath for EarlGrey and OCHamcrest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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