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

Side by Side Diff: chromecast/chromecast.gyp

Issue 876373004: Chromecast: rpath for loading NSS module in cast_shell directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 }, 513 },
514 { 514 {
515 'target_name': 'cast_shell', 515 'target_name': 'cast_shell',
516 'type': 'executable', 516 'type': 'executable',
517 'dependencies': [ 517 'dependencies': [
518 'cast_shell_core', 518 'cast_shell_core',
519 ], 519 ],
520 'sources': [ 520 'sources': [
521 'app/cast_main.cc', 521 'app/cast_main.cc',
522 ], 522 ],
523 # TODO(dougsteed): remove when Chromecast moves to boringssl.
524 # Allow the cast shell to find the NSS module in the same directory.
525 'ldflags': [
526 '-Wl,-rpath=\$$ORIGIN'
527 ],
523 }, 528 },
524 ], # end of targets 529 ], # end of targets
525 }], 530 }],
526 ], # end of conditions 531 ], # end of conditions
527 } 532 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698