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