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 'cast_is_debug_build%': 0, | 10 'cast_is_debug_build%': 0, |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'target_name': 'cast_base', | 55 'target_name': 'cast_base', |
56 'type': '<(component)', | 56 'type': '<(component)', |
57 'dependencies': [ | 57 'dependencies': [ |
58 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
59 ], | 59 ], |
60 'sources': [ | 60 'sources': [ |
61 'base/cast_paths.cc', | 61 'base/cast_paths.cc', |
62 'base/cast_paths.h', | 62 'base/cast_paths.h', |
63 'base/chromecast_switches.cc', | 63 'base/chromecast_switches.cc', |
64 'base/chromecast_switches.h', | 64 'base/chromecast_switches.h', |
| 65 'base/error_codes.cc', |
| 66 'base/error_codes.h', |
65 'base/metrics/cast_histograms.h', | 67 'base/metrics/cast_histograms.h', |
66 'base/metrics/cast_metrics_helper.cc', | 68 'base/metrics/cast_metrics_helper.cc', |
67 'base/metrics/cast_metrics_helper.h', | 69 'base/metrics/cast_metrics_helper.h', |
68 'base/metrics/grouped_histogram.cc', | 70 'base/metrics/grouped_histogram.cc', |
69 'base/metrics/grouped_histogram.h', | 71 'base/metrics/grouped_histogram.h', |
70 'base/path_utils.cc', | 72 'base/path_utils.cc', |
71 'base/path_utils.h', | 73 'base/path_utils.h', |
72 'base/process_utils.cc', | 74 'base/process_utils.cc', |
73 'base/process_utils.h', | 75 'base/process_utils.h', |
74 'base/serializers.cc', | 76 'base/serializers.cc', |
75 'base/serializers.h' | 77 'base/serializers.h' |
76 ], | 78 ], |
77 }, # end of target 'cast_base' | 79 }, # end of target 'cast_base' |
78 { | 80 { |
79 'target_name': 'cast_crash_client', | 81 'target_name': 'cast_crash_client', |
80 'type': '<(component)', | 82 'type': '<(component)', |
81 'dependencies': [ | 83 'dependencies': [ |
| 84 'cast_base', |
| 85 'cast_version_header', |
82 '../breakpad/breakpad.gyp:breakpad_client', | 86 '../breakpad/breakpad.gyp:breakpad_client', |
83 '../components/components.gyp:crash_component', | 87 '../components/components.gyp:crash_component', |
84 ], | 88 ], |
85 'sources': [ | 89 'sources': [ |
| 90 'crash/app_state_tracker.cc', |
| 91 'crash/app_state_tracker.h', |
| 92 'crash/breakpad_util.cc', |
| 93 'crash/breakpad_util.h', |
86 'crash/cast_crash_keys.cc', | 94 'crash/cast_crash_keys.cc', |
87 'crash/cast_crash_keys.h', | 95 'crash/cast_crash_keys.h', |
88 'crash/cast_crash_reporter_client.cc', | 96 'crash/cast_crash_reporter_client.cc', |
89 'crash/cast_crash_reporter_client.h', | 97 'crash/cast_crash_reporter_client.h', |
| 98 'crash/dummy_minidump_generator.cc', |
| 99 'crash/dummy_minidump_generator.h', |
| 100 'crash/dump_info.cc', |
| 101 'crash/dump_info.h', |
| 102 'crash/minidump_generator.h', |
| 103 'crash/minidump_manager.cc', |
| 104 'crash/minidump_manager.h', |
| 105 'crash/minidump_writer.cc', |
| 106 'crash/minidump_writer.h', |
90 ], | 107 ], |
91 'conditions': [ | 108 'conditions': [ |
92 ['chromecast_branding=="Chrome"', { | 109 ['chromecast_branding=="Chrome"', { |
93 'dependencies': [ | 110 'sources': [ |
94 'internal/chromecast_internal.gyp:crash_internal', | 111 'crash/cast_crash_reporter_client_uploader.cc', |
95 ], | 112 ], |
96 }, { | 113 }, { |
97 'sources': [ | 114 'sources': [ |
98 'crash/cast_crash_reporter_client_simple.cc', | 115 'crash/cast_crash_reporter_client_simple.cc', |
99 ], | 116 ], |
100 }], | 117 }], |
101 ] | 118 ] |
102 }, # end of target 'cast_crash_client' | 119 }, # end of target 'cast_crash_client' |
103 { | 120 { |
104 'target_name': 'cast_net', | 121 'target_name': 'cast_net', |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 'sources': [ | 670 'sources': [ |
654 'graphics/cast_egl_platform_default.cc', | 671 'graphics/cast_egl_platform_default.cc', |
655 'graphics/graphics_properties_default.cc', | 672 'graphics/graphics_properties_default.cc', |
656 'graphics/osd_plane_default.cc' | 673 'graphics/osd_plane_default.cc' |
657 ], | 674 ], |
658 } | 675 } |
659 ] | 676 ] |
660 }], | 677 }], |
661 ], # end of conditions | 678 ], # end of conditions |
662 } | 679 } |
OLD | NEW |