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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 ], | 45 ], |
46 }, # end of target 'cast_base' | 46 }, # end of target 'cast_base' |
47 { | 47 { |
48 'target_name': 'cast_crash_client', | 48 'target_name': 'cast_crash_client', |
49 'type': '<(component)', | 49 'type': '<(component)', |
50 'dependencies': [ | 50 'dependencies': [ |
51 '../breakpad/breakpad.gyp:breakpad_client', | 51 '../breakpad/breakpad.gyp:breakpad_client', |
52 '../components/components.gyp:crash_component', | 52 '../components/components.gyp:crash_component', |
53 ], | 53 ], |
54 'sources': [ | 54 'sources': [ |
| 55 'crash/cast_crash_keys.cc', |
| 56 'crash/cast_crash_keys.h', |
55 'crash/cast_crash_reporter_client.cc', | 57 'crash/cast_crash_reporter_client.cc', |
56 'crash/cast_crash_reporter_client.h', | 58 'crash/cast_crash_reporter_client.h', |
57 ], | 59 ], |
58 'conditions': [ | 60 'conditions': [ |
59 ['chromecast_branding=="Chrome"', { | 61 ['chromecast_branding=="Chrome"', { |
60 'dependencies': [ | 62 'dependencies': [ |
61 '<(cast_internal_gyp):crash_internal', | 63 '<(cast_internal_gyp):crash_internal', |
62 ], | 64 ], |
63 }, { | 65 }, { |
64 'sources': [ | 66 'sources': [ |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 526 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
525 # Allow the cast shell to find the NSS module in the same directory. | 527 # Allow the cast shell to find the NSS module in the same directory. |
526 'ldflags': [ | 528 'ldflags': [ |
527 '-Wl,-rpath=\$$ORIGIN' | 529 '-Wl,-rpath=\$$ORIGIN' |
528 ], | 530 ], |
529 }, | 531 }, |
530 ], # end of targets | 532 ], # end of targets |
531 }], | 533 }], |
532 ], # end of conditions | 534 ], # end of conditions |
533 } | 535 } |
OLD | NEW |