| 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 'common/pref_names.cc', | 29 'common/pref_names.cc', |
| 28 'common/pref_names.h', | 30 'common/pref_names.h', |
| 29 ], | 31 ], |
| 30 'conditions': [ | 32 'conditions': [ |
| 31 ['chromecast_branding=="Chrome"', { | 33 ['chromecast_branding=="Chrome"', { |
| 32 'dependencies': [ | 34 'dependencies': [ |
| 33 'internal/chromecast_internal.gyp:cast_common_internal', | 35 'internal/chromecast_internal.gyp:cast_common_internal', |
| 34 ], | 36 ], |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 }, | 125 }, |
| 124 { | 126 { |
| 125 'target_name': 'cast_shell', | 127 'target_name': 'cast_shell', |
| 126 'type': 'executable', | 128 'type': 'executable', |
| 127 'dependencies': [ | 129 'dependencies': [ |
| 128 'cast_common', | 130 'cast_common', |
| 129 'cast_service', | 131 'cast_service', |
| 130 'cast_shell_pak', | 132 'cast_shell_pak', |
| 131 'cast_shell_resources', | 133 'cast_shell_resources', |
| 132 'cast_version_header', | 134 'cast_version_header', |
| 135 'chromecast_locales.gyp:chromecast_locales_pak', |
| 136 'chromecast_locales.gyp:chromecast_settings', |
| 133 '../ui/aura/aura.gyp:aura_test_support', | 137 '../ui/aura/aura.gyp:aura_test_support', |
| 134 '../content/content.gyp:content', | 138 '../content/content.gyp:content', |
| 135 '../content/content.gyp:content_app_browser', | 139 '../content/content.gyp:content_app_browser', |
| 136 '../skia/skia.gyp:skia', | 140 '../skia/skia.gyp:skia', |
| 137 ], | 141 ], |
| 138 'sources': [ | 142 'sources': [ |
| 139 'net/network_change_notifier_cast.cc', | 143 'net/network_change_notifier_cast.cc', |
| 140 'net/network_change_notifier_cast.h', | 144 'net/network_change_notifier_cast.h', |
| 141 'net/network_change_notifier_factory_cast.cc', | 145 'net/network_change_notifier_factory_cast.cc', |
| 142 'net/network_change_notifier_factory_cast.h', | 146 'net/network_change_notifier_factory_cast.h', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 '<@(_outputs)', | 210 '<@(_outputs)', |
| 207 ], | 211 ], |
| 208 'includes': [ | 212 'includes': [ |
| 209 '../build/util/version.gypi', | 213 '../build/util/version.gypi', |
| 210 ], | 214 ], |
| 211 }, | 215 }, |
| 212 ], | 216 ], |
| 213 }, | 217 }, |
| 214 ], # end of targets | 218 ], # end of targets |
| 215 } | 219 } |
| OLD | NEW |