| 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 'type': 'executable', | 154 'type': 'executable', |
| 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 'media/media.gyp:cast_media', |
| 164 '../components/components.gyp:component_metrics_proto', | 165 '../components/components.gyp:component_metrics_proto', |
| 165 '../content/content.gyp:content', | 166 '../content/content.gyp:content', |
| 166 '../content/content.gyp:content_app_browser', | 167 '../content/content.gyp:content_app_browser', |
| 167 '../skia/skia.gyp:skia', | 168 '../skia/skia.gyp:skia', |
| 168 '../ui/aura/aura.gyp:aura_test_support', | 169 '../ui/aura/aura.gyp:aura_test_support', |
| 169 ], | 170 ], |
| 170 'sources': [ | 171 'sources': [ |
| 171 'net/network_change_notifier_cast.cc', | 172 'net/network_change_notifier_cast.cc', |
| 172 'net/network_change_notifier_cast.h', | 173 'net/network_change_notifier_cast.h', |
| 173 'net/network_change_notifier_factory_cast.cc', | 174 'net/network_change_notifier_factory_cast.cc', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 '-e', 'VERSION_FULL="<(version_full)"', | 240 '-e', 'VERSION_FULL="<(version_full)"', |
| 240 'common/version.h.in', | 241 'common/version.h.in', |
| 241 '<@(_outputs)', | 242 '<@(_outputs)', |
| 242 ], | 243 ], |
| 243 'includes': [ | 244 'includes': [ |
| 244 '../build/util/version.gypi', | 245 '../build/util/version.gypi', |
| 245 ], | 246 ], |
| 246 }, | 247 }, |
| 247 ], | 248 ], |
| 248 }, | 249 }, |
| 250 { |
| 251 'target_name': 'cast_tests', |
| 252 'type': 'none', |
| 253 'dependencies': [ |
| 254 'media/media.gyp:cast_media_unittests', |
| 255 ], |
| 256 }, |
| 249 ], # end of targets | 257 ], # end of targets |
| 250 } | 258 } |
| OLD | NEW |