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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'chromecast_branding%': 'Chromium', | 8 'chromecast_branding%': 'Chromium', |
9 }, | 9 }, |
10 'target_defaults': { | 10 'target_defaults': { |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '..', # Root of Chromium checkout | 12 '..', # Root of Chromium checkout |
13 ], | 13 ], |
14 }, | 14 }, |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'cast_common', | 17 'target_name': 'cast_common', |
18 'type': '<(component)', | 18 'type': '<(component)', |
19 'dependencies': [ | 19 'dependencies': [ |
20 '../base/base.gyp:base', | 20 '../base/base.gyp:base', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 'common/cast_paths.cc', | 23 'common/cast_paths.cc', |
24 'common/cast_paths.h', | 24 'common/cast_paths.h', |
| 25 'common/cast_resource_delegate.cc', |
| 26 'common/cast_resource_delegate.h', |
25 'common/chromecast_config.cc', | 27 'common/chromecast_config.cc', |
26 'common/chromecast_config.h', | 28 'common/chromecast_config.h', |
27 ], | 29 ], |
28 'conditions': [ | 30 'conditions': [ |
29 ['chromecast_branding=="Chrome"', { | 31 ['chromecast_branding=="Chrome"', { |
30 'dependencies': [ | 32 'dependencies': [ |
31 'internal/chromecast_internal.gyp:cast_common_internal', | 33 'internal/chromecast_internal.gyp:cast_common_internal', |
32 ], | 34 ], |
33 }, { | 35 }, { |
34 'sources': [ | 36 'sources': [ |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 ], | 108 ], |
107 }, | 109 }, |
108 { | 110 { |
109 'target_name': 'cast_shell', | 111 'target_name': 'cast_shell', |
110 'type': 'executable', | 112 'type': 'executable', |
111 'dependencies': [ | 113 'dependencies': [ |
112 'cast_common', | 114 'cast_common', |
113 'cast_service', | 115 'cast_service', |
114 'cast_shell_pak', | 116 'cast_shell_pak', |
115 'cast_version_header', | 117 'cast_version_header', |
| 118 'chromecast_locales.gyp:chromecast_locales_pak', |
| 119 'chromecast_locales.gyp:chromecast_settings', |
116 '../ui/aura/aura.gyp:aura_test_support', | 120 '../ui/aura/aura.gyp:aura_test_support', |
117 '../content/content.gyp:content', | 121 '../content/content.gyp:content', |
118 '../content/content.gyp:content_app_browser', | 122 '../content/content.gyp:content_app_browser', |
119 '../skia/skia.gyp:skia', | 123 '../skia/skia.gyp:skia', |
120 ], | 124 ], |
121 'sources': [ | 125 'sources': [ |
122 'net/network_change_notifier_cast.cc', | 126 'net/network_change_notifier_cast.cc', |
123 'net/network_change_notifier_cast.h', | 127 'net/network_change_notifier_cast.h', |
124 'net/network_change_notifier_factory_cast.cc', | 128 'net/network_change_notifier_factory_cast.cc', |
125 'net/network_change_notifier_factory_cast.h', | 129 'net/network_change_notifier_factory_cast.h', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 '<@(_outputs)', | 186 '<@(_outputs)', |
183 ], | 187 ], |
184 'includes': [ | 188 'includes': [ |
185 '../build/util/version.gypi', | 189 '../build/util/version.gypi', |
186 ], | 190 ], |
187 }, | 191 }, |
188 ], | 192 ], |
189 }, | 193 }, |
190 ], # end of targets | 194 ], # end of targets |
191 } | 195 } |
OLD | NEW |