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 { |
82 'target_name': 'cast_crash', | |
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 | |
91 'dependencies': [ | |
92 'cast_base', | |
93 'cast_version_header', | |
94 '../breakpad/breakpad.gyp:breakpad_client', | |
95 ], | |
96 | |
97 'sources': [ | |
98 'crash/app_state_tracker.cc', | |
99 'crash/app_state_tracker.h', | |
100 'crash/cast_crash_keys.cc', | |
101 'crash/cast_crash_keys.h', | |
102 'crash/cast_crashdump_uploader.cc', | |
103 'crash/cast_crashdump_uploader.h', | |
104 'crash/linux/crash_util.cc', | |
105 'crash/linux/crash_util.h', | |
106 'crash/linux/dummy_minidump_generator.cc', | |
107 'crash/linux/dummy_minidump_generator.h', | |
108 'crash/linux/dump_info.cc', | |
109 'crash/linux/dump_info.h', | |
110 'crash/linux/minidump_generator.h', | |
111 'crash/linux/synchronized_minidump_manager.cc', | |
112 'crash/linux/synchronized_minidump_manager.h', | |
113 'crash/linux/minidump_params.cc', | |
114 'crash/linux/minidump_params.h', | |
115 'crash/linux/minidump_writer.cc', | |
116 'crash/linux/minidump_writer.h', | |
117 ], | |
118 }, # end of target 'cast_crash' | |
119 { | |
80 'target_name': 'cast_crash_client', | 120 'target_name': 'cast_crash_client', |
slan
2015/06/22 21:24:54
Android crash client should be moved here too.
slan
2015/06/22 22:32:25
Done.
| |
81 'type': '<(component)', | 121 'type': '<(component)', |
82 'dependencies': [ | 122 'dependencies': [ |
83 '../breakpad/breakpad.gyp:breakpad_client', | 123 'cast_crash', |
84 '../components/components.gyp:crash_component', | 124 '../components/components.gyp:crash_component', |
125 '../content/content.gyp:content_common', | |
85 ], | 126 ], |
86 'sources': [ | 127 'sources' : [ |
87 'crash/cast_crash_keys.cc', | 128 'app/linux/cast_crash_reporter_client.cc', |
88 'crash/cast_crash_keys.h', | 129 'app/linux/cast_crash_reporter_client.h', |
89 'crash/cast_crash_reporter_client.cc', | |
90 'crash/cast_crash_reporter_client.h', | |
91 ], | 130 ], |
92 'conditions': [ | 131 }, # end of targer 'cast_crash_client' |
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 { | 132 { |
105 'target_name': 'cast_net', | 133 'target_name': 'cast_net', |
106 'type': '<(component)', | 134 'type': '<(component)', |
107 'sources': [ | 135 'sources': [ |
108 'net/connectivity_checker.cc', | 136 'net/connectivity_checker.cc', |
109 'net/connectivity_checker.h', | 137 'net/connectivity_checker.h', |
110 'net/connectivity_checker_impl.cc', | 138 'net/connectivity_checker_impl.cc', |
111 'net/connectivity_checker_impl.h', | 139 'net/connectivity_checker_impl.h', |
112 'net/fake_connectivity_checker.cc', | 140 'net/fake_connectivity_checker.cc', |
113 'net/fake_connectivity_checker.h', | 141 'net/fake_connectivity_checker.h', |
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
665 'sources': [ | 693 'sources': [ |
666 'graphics/cast_egl_platform_default.cc', | 694 'graphics/cast_egl_platform_default.cc', |
667 'graphics/graphics_properties_default.cc', | 695 'graphics/graphics_properties_default.cc', |
668 'graphics/osd_plane_default.cc' | 696 'graphics/osd_plane_default.cc' |
669 ], | 697 ], |
670 } | 698 } |
671 ] | 699 ] |
672 }], | 700 }], |
673 ], # end of conditions | 701 ], # end of conditions |
674 } | 702 } |
OLD | NEW |