| 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/chromecast_config.cc', |
| 26 'common/chromecast_config.h', |
| 25 ], | 27 ], |
| 26 'conditions': [ | 28 'conditions': [ |
| 27 ['chromecast_branding=="Chrome"', { | 29 ['chromecast_branding=="Chrome"', { |
| 28 'dependencies': [ | 30 'dependencies': [ |
| 29 'internal/chromecast_internal.gyp:cast_common_internal', | 31 'internal/chromecast_internal.gyp:cast_common_internal', |
| 30 ], | 32 ], |
| 33 }, { |
| 34 'sources': [ |
| 35 'common/chromecast_config_simple.cc', |
| 36 ], |
| 31 }], | 37 }], |
| 32 ], | 38 ], |
| 33 }, | 39 }, |
| 34 { | 40 { |
| 35 'target_name': 'cast_service', | 41 'target_name': 'cast_service', |
| 36 'type': '<(component)', | 42 'type': '<(component)', |
| 37 'dependencies': [ | 43 'dependencies': [ |
| 38 '../skia/skia.gyp:skia', | 44 '../skia/skia.gyp:skia', |
| 39 ], | 45 ], |
| 40 'sources': [ | 46 'sources': [ |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 '<@(_outputs)', | 182 '<@(_outputs)', |
| 177 ], | 183 ], |
| 178 'includes': [ | 184 'includes': [ |
| 179 '../build/util/version.gypi', | 185 '../build/util/version.gypi', |
| 180 ], | 186 ], |
| 181 }, | 187 }, |
| 182 ], | 188 ], |
| 183 }, | 189 }, |
| 184 ], # end of targets | 190 ], # end of targets |
| 185 } | 191 } |
| OLD | NEW |