| 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', | 25 'common/cast_resource_delegate.cc', |
| 26 'common/cast_resource_delegate.h', | 26 'common/cast_resource_delegate.h', |
| 27 'common/chromecast_config.cc', | 27 'common/chromecast_config.cc', |
| 28 'common/chromecast_config.h', | 28 'common/chromecast_config.h', |
| 29 'common/chromecast_switches.cc', |
| 30 'common/chromecast_switches.h', |
| 29 'common/pref_names.cc', | 31 'common/pref_names.cc', |
| 30 'common/pref_names.h', | 32 'common/pref_names.h', |
| 31 ], | 33 ], |
| 32 'conditions': [ | 34 'conditions': [ |
| 33 ['chromecast_branding=="Chrome"', { | 35 ['chromecast_branding=="Chrome"', { |
| 34 'dependencies': [ | 36 'dependencies': [ |
| 35 'internal/chromecast_internal.gyp:cast_common_internal', | 37 'internal/chromecast_internal.gyp:cast_common_internal', |
| 36 ], | 38 ], |
| 37 }, { | 39 }, { |
| 38 'sources': [ | 40 'sources': [ |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 }, | 269 }, |
| 268 { | 270 { |
| 269 'target_name': 'cast_tests', | 271 'target_name': 'cast_tests', |
| 270 'type': 'none', | 272 'type': 'none', |
| 271 'dependencies': [ | 273 'dependencies': [ |
| 272 'media/media.gyp:cast_media_unittests', | 274 'media/media.gyp:cast_media_unittests', |
| 273 ], | 275 ], |
| 274 }, | 276 }, |
| 275 ], # end of targets | 277 ], # end of targets |
| 276 } | 278 } |
| OLD | NEW |