Chromium Code Reviews| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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', |
| 154 'type': 'executable', | 154 'type': 'executable', |
| 155 'dependencies': [ | 155 'dependencies': [ |
| 156 'cast_common', | 156 'cast_common', |
| 157 'cast_metrics', | 157 'cast_metrics', |
|
lcwu1
2014/08/28 02:14:58
Should we add cast_media here as a dependency so t
damienv1
2014/08/29 15:09:05
Done.
| |
| 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', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 239 '-e', 'VERSION_FULL="<(version_full)"', | 239 '-e', 'VERSION_FULL="<(version_full)"', |
| 240 'common/version.h.in', | 240 'common/version.h.in', |
| 241 '<@(_outputs)', | 241 '<@(_outputs)', |
| 242 ], | 242 ], |
| 243 'includes': [ | 243 'includes': [ |
| 244 '../build/util/version.gypi', | 244 '../build/util/version.gypi', |
| 245 ], | 245 ], |
| 246 }, | 246 }, |
| 247 ], | 247 ], |
| 248 }, | 248 }, |
| 249 { | |
| 250 'target_name': 'cast_tests', | |
| 251 'type': 'none', | |
| 252 'dependencies': [ | |
| 253 'media/media.gyp:cast_media_unittests', | |
| 254 ], | |
| 255 }, | |
| 249 ], # end of targets | 256 ], # end of targets |
| 250 } | 257 } |
| OLD | NEW |