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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 'target_name': 'cast_base', | 56 'target_name': 'cast_base', |
57 'type': '<(component)', | 57 'type': '<(component)', |
58 'dependencies': [ | 58 'dependencies': [ |
59 '../base/base.gyp:base', | 59 '../base/base.gyp:base', |
60 ], | 60 ], |
61 'sources': [ | 61 'sources': [ |
62 'base/cast_paths.cc', | 62 'base/cast_paths.cc', |
63 'base/cast_paths.h', | 63 'base/cast_paths.h', |
64 'base/chromecast_switches.cc', | 64 'base/chromecast_switches.cc', |
65 'base/chromecast_switches.h', | 65 'base/chromecast_switches.h', |
66 'base/error_codes.cc', | |
67 'base/error_codes.h', | |
66 'base/metrics/cast_histograms.h', | 68 'base/metrics/cast_histograms.h', |
67 'base/metrics/cast_metrics_helper.cc', | 69 'base/metrics/cast_metrics_helper.cc', |
68 'base/metrics/cast_metrics_helper.h', | 70 'base/metrics/cast_metrics_helper.h', |
69 'base/metrics/grouped_histogram.cc', | 71 'base/metrics/grouped_histogram.cc', |
70 'base/metrics/grouped_histogram.h', | 72 'base/metrics/grouped_histogram.h', |
71 'base/path_utils.cc', | 73 'base/path_utils.cc', |
72 'base/path_utils.h', | 74 'base/path_utils.h', |
73 'base/process_utils.cc', | 75 'base/process_utils.cc', |
74 'base/process_utils.h', | 76 'base/process_utils.h', |
75 'base/serializers.cc', | 77 'base/serializers.cc', |
76 'base/serializers.h' | 78 'base/serializers.h' |
77 ], | 79 ], |
78 }, # end of target 'cast_base' | 80 }, # end of target 'cast_base' |
79 { | 81 { |
80 'target_name': 'cast_crash_client', | 82 'target_name': 'cast_crash', |
81 'type': '<(component)', | 83 'type': '<(component)', |
84 'include_dirs': [ | |
85 # TODO(gfhuang): we should not need to include this directly, but | |
86 # somehow depending on component.gyp:breakpad_component is not | |
87 # working as expected. | |
88 '../breakpad/src', | |
89 ], | |
90 | |
82 'dependencies': [ | 91 'dependencies': [ |
92 'cast_base', | |
93 'cast_version_header', | |
83 '../breakpad/breakpad.gyp:breakpad_client', | 94 '../breakpad/breakpad.gyp:breakpad_client', |
84 '../components/components.gyp:crash_component', | 95 '../components/components.gyp:crash_component', |
85 ], | 96 ], |
97 | |
86 'sources': [ | 98 'sources': [ |
99 '../content/public/common/content_switches.cc', | |
gunsch
2015/06/22 17:07:54
whoa, when did this get added? That's definitely g
| |
100 'crash/app_state_tracker.cc', | |
101 'crash/app_state_tracker.h', | |
87 'crash/cast_crash_keys.cc', | 102 'crash/cast_crash_keys.cc', |
88 'crash/cast_crash_keys.h', | 103 'crash/cast_crash_keys.h', |
89 'crash/cast_crash_reporter_client.cc', | 104 'crash/cast_crashdump_uploader.cc', |
90 'crash/cast_crash_reporter_client.h', | 105 'crash/cast_crashdump_uploader.h', |
106 'crash/linux/cast_crash_reporter_client.cc', | |
107 'crash/linux/cast_crash_reporter_client.h', | |
108 'crash/linux/crash_util.cc', | |
109 'crash/linux/crash_util.h', | |
110 'crash/linux/dummy_minidump_generator.cc', | |
111 'crash/linux/dummy_minidump_generator.h', | |
112 'crash/linux/dump_info.cc', | |
113 'crash/linux/dump_info.h', | |
114 'crash/linux/minidump_generator.h', | |
115 'crash/linux/synchronized_minidump_manager.cc', | |
116 'crash/linux/synchronized_minidump_manager.h', | |
117 'crash/linux/minidump_params.cc', | |
118 'crash/linux/minidump_params.h', | |
119 'crash/linux/minidump_writer.cc', | |
120 'crash/linux/minidump_writer.h', | |
91 ], | 121 ], |
92 'conditions': [ | 122 }, # end of target 'cast_crash' |
93 ['chromecast_branding=="Chrome"', { | |
94 'dependencies': [ | |
95 'internal/chromecast_internal.gyp:crash_internal', | |
96 ], | |
97 }, { | |
98 'sources': [ | |
99 'crash/cast_crash_reporter_client_simple.cc', | |
100 ], | |
101 }], | |
102 ] | |
103 }, # end of target 'cast_crash_client' | |
104 { | 123 { |
105 'target_name': 'cast_net', | 124 'target_name': 'cast_net', |
106 'type': '<(component)', | 125 'type': '<(component)', |
107 'sources': [ | 126 'sources': [ |
108 'net/connectivity_checker.cc', | 127 'net/connectivity_checker.cc', |
109 'net/connectivity_checker.h', | 128 'net/connectivity_checker.h', |
110 'net/connectivity_checker_impl.cc', | 129 'net/connectivity_checker_impl.cc', |
111 'net/connectivity_checker_impl.h', | 130 'net/connectivity_checker_impl.h', |
112 'net/fake_connectivity_checker.cc', | 131 'net/fake_connectivity_checker.cc', |
113 'net/fake_connectivity_checker.h', | 132 'net/fake_connectivity_checker.h', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
194 }], | 213 }], |
195 ], | 214 ], |
196 }, # end of target 'cast_shell_pak' | 215 }, # end of target 'cast_shell_pak' |
197 # This target contains all content-embedder implementation that is | 216 # This target contains all content-embedder implementation that is |
198 # non-platform-specific. | 217 # non-platform-specific. |
199 { | 218 { |
200 'target_name': 'cast_shell_common', | 219 'target_name': 'cast_shell_common', |
201 'type': '<(component)', | 220 'type': '<(component)', |
202 'dependencies': [ | 221 'dependencies': [ |
203 'cast_base', | 222 'cast_base', |
204 'cast_crash_client', | 223 'cast_crash', |
205 'cast_net', | 224 'cast_net', |
206 'cast_shell_pak', | 225 'cast_shell_pak', |
207 'cast_shell_resources', | 226 'cast_shell_resources', |
208 'cast_sys_info', | 227 'cast_sys_info', |
209 'cast_version_header', | 228 'cast_version_header', |
210 'chromecast_locales.gyp:chromecast_locales_pak', | 229 'chromecast_locales.gyp:chromecast_locales_pak', |
211 'chromecast_locales.gyp:chromecast_settings', | 230 'chromecast_locales.gyp:chromecast_settings', |
212 'media/media.gyp:media_base', | 231 'media/media.gyp:media_base', |
213 'media/media.gyp:media_cdm', | 232 'media/media.gyp:media_cdm', |
214 '../base/base.gyp:base', | 233 '../base/base.gyp:base', |
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
665 'sources': [ | 684 'sources': [ |
666 'graphics/cast_egl_platform_default.cc', | 685 'graphics/cast_egl_platform_default.cc', |
667 'graphics/graphics_properties_default.cc', | 686 'graphics/graphics_properties_default.cc', |
668 'graphics/osd_plane_default.cc' | 687 'graphics/osd_plane_default.cc' |
669 ], | 688 ], |
670 } | 689 } |
671 ] | 690 ] |
672 }], | 691 }], |
673 ], # end of conditions | 692 ], # end of conditions |
674 } | 693 } |
OLD | NEW |