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': { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', | 143 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak', |
144 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', | 144 '<(SHARED_INTERMEDIATE_DIR)/webkit/devtools_resources.pak', |
145 ], | 145 ], |
146 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak', | 146 'pak_output': '<(PRODUCT_DIR)/assets/cast_shell.pak', |
147 }, | 147 }, |
148 'includes': [ '../build/repack_action.gypi' ], | 148 'includes': [ '../build/repack_action.gypi' ], |
149 }, | 149 }, |
150 ], | 150 ], |
151 }, | 151 }, |
152 { | 152 { |
153 'target_name': 'cast_shell', | 153 'target_name': 'cast_shell_core', |
154 'type': 'executable', | 154 'type': '<(component)', |
155 'dependencies': [ | 155 'dependencies': [ |
156 'cast_common', | 156 'cast_common', |
157 'cast_metrics', | 157 'cast_metrics', |
158 'cast_service', | 158 'cast_service', |
159 'cast_shell_pak', | 159 'cast_shell_pak', |
160 'cast_shell_resources', | 160 'cast_shell_resources', |
161 'cast_version_header', | 161 'cast_version_header', |
162 'chromecast_locales.gyp:chromecast_locales_pak', | 162 'chromecast_locales.gyp:chromecast_locales_pak', |
163 'chromecast_locales.gyp:chromecast_settings', | 163 'chromecast_locales.gyp:chromecast_settings', |
164 '../components/components.gyp:component_metrics_proto', | 164 '../components/components.gyp:component_metrics_proto', |
165 '../content/content.gyp:content', | 165 '../content/content.gyp:content', |
166 '../content/content.gyp:content_app_browser', | 166 '../content/content.gyp:content_app_browser', |
167 '../skia/skia.gyp:skia', | 167 '../skia/skia.gyp:skia', |
168 '../ui/aura/aura.gyp:aura_test_support', | 168 '../ui/aura/aura.gyp:aura_test_support', |
169 ], | 169 ], |
170 'sources': [ | 170 'sources': [ |
171 'net/network_change_notifier_cast.cc', | 171 'net/network_change_notifier_cast.cc', |
172 'net/network_change_notifier_cast.h', | 172 'net/network_change_notifier_cast.h', |
173 'net/network_change_notifier_factory_cast.cc', | 173 'net/network_change_notifier_factory_cast.cc', |
174 'net/network_change_notifier_factory_cast.h', | 174 'net/network_change_notifier_factory_cast.h', |
175 'shell/app/cast_main.cc', | |
176 'shell/app/cast_main_delegate.cc', | 175 'shell/app/cast_main_delegate.cc', |
177 'shell/app/cast_main_delegate.h', | 176 'shell/app/cast_main_delegate.h', |
178 'shell/browser/cast_browser_context.cc', | 177 'shell/browser/cast_browser_context.cc', |
179 'shell/browser/cast_browser_context.h', | 178 'shell/browser/cast_browser_context.h', |
180 'shell/browser/cast_browser_main_parts.cc', | 179 'shell/browser/cast_browser_main_parts.cc', |
181 'shell/browser/cast_browser_main_parts.h', | 180 'shell/browser/cast_browser_main_parts.h', |
182 'shell/browser/cast_browser_process.cc', | 181 'shell/browser/cast_browser_process.cc', |
183 'shell/browser/cast_browser_process.h', | 182 'shell/browser/cast_browser_process.h', |
184 'shell/browser/cast_content_browser_client.cc', | 183 'shell/browser/cast_content_browser_client.cc', |
185 'shell/browser/cast_content_browser_client.h', | 184 'shell/browser/cast_content_browser_client.h', |
(...skipping 24 matching lines...) Expand all Loading... |
210 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', | 209 '../ui/ozone/ozone.gyp:eglplatform_shim_x11', |
211 ], | 210 ], |
212 'sources': [ | 211 'sources': [ |
213 'shell/browser/devtools/remote_debugging_server_simple.cc', | 212 'shell/browser/devtools/remote_debugging_server_simple.cc', |
214 'shell/browser/webui/webui_cast_simple.cc', | 213 'shell/browser/webui/webui_cast_simple.cc', |
215 ], | 214 ], |
216 }], | 215 }], |
217 ], | 216 ], |
218 }, | 217 }, |
219 { | 218 { |
| 219 'target_name': 'cast_shell', |
| 220 'type': 'executable', |
| 221 'dependencies': [ |
| 222 'cast_shell_core' |
| 223 ], |
| 224 'sources': [ |
| 225 'shell/app/cast_main.cc', |
| 226 ], |
| 227 }, |
| 228 { |
| 229 'target_name': 'cast_shell_browser_test', |
| 230 'type': '<(gtest_target_type)', |
| 231 'dependencies': [ |
| 232 'cast_shell_test_support', |
| 233 ], |
| 234 'defines': [ |
| 235 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 236 ], |
| 237 'sources': [ |
| 238 'shell/browser/test/chromecast_shell_browser_test.cc', |
| 239 ], |
| 240 'include_dirs': [ |
| 241 '../testing/gtest/include', |
| 242 ], |
| 243 }, |
| 244 { |
| 245 'target_name': 'cast_shell_test_support', |
| 246 'type': '<(component)', |
| 247 'defines': [ |
| 248 'HAS_OUT_OF_PROC_TEST_RUNNER', |
| 249 ], |
| 250 'dependencies': [ |
| 251 'cast_shell_core', |
| 252 '../content/content_shell_and_tests.gyp:content_browser_test_support', |
| 253 '../testing/gtest.gyp:gtest', |
| 254 ], |
| 255 'sources': [ |
| 256 'shell/browser/test/chromecast_browser_test.cc', |
| 257 'shell/browser/test/chromecast_browser_test.h', |
| 258 'shell/browser/test/chromecast_browser_test_runner.cc', |
| 259 ], |
| 260 }, |
| 261 { |
220 'target_name': 'cast_version_header', | 262 'target_name': 'cast_version_header', |
221 'type': 'none', | 263 'type': 'none', |
222 'direct_dependent_settings': { | 264 'direct_dependent_settings': { |
223 'include_dirs': [ | 265 'include_dirs': [ |
224 '<(SHARED_INTERMEDIATE_DIR)', | 266 '<(SHARED_INTERMEDIATE_DIR)', |
225 ], | 267 ], |
226 }, | 268 }, |
227 'actions': [ | 269 'actions': [ |
228 { | 270 { |
229 'action_name': 'version_header', | 271 'action_name': 'version_header', |
(...skipping 13 matching lines...) Expand all Loading... |
243 '<@(_outputs)', | 285 '<@(_outputs)', |
244 ], | 286 ], |
245 'includes': [ | 287 'includes': [ |
246 '../build/util/version.gypi', | 288 '../build/util/version.gypi', |
247 ], | 289 ], |
248 }, | 290 }, |
249 ], | 291 ], |
250 }, | 292 }, |
251 ], # end of targets | 293 ], # end of targets |
252 } | 294 } |
OLD | NEW |