| 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 'android_support_v13_target%': | 7 'android_support_v13_target%': |
| 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', | 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java
lib', |
| 9 'chromium_code': 1, | 9 'chromium_code': 1, |
| 10 'chromecast_branding%': 'Chromium', | 10 'chromecast_branding%': 'Chromium', |
| 11 }, | 11 }, |
| 12 'includes': [ | 12 'includes': [ |
| 13 'chromecast_tests.gypi', | 13 'chromecast_tests.gypi', |
| 14 ], | 14 ], |
| 15 'target_defaults': { | 15 'target_defaults': { |
| 16 'include_dirs': [ | 16 'include_dirs': [ |
| 17 '..', # Root of Chromium checkout | 17 '..', # Root of Chromium checkout |
| 18 ], | 18 ], |
| 19 }, | 19 }, |
| 20 'targets': [ | 20 'targets': [ |
| 21 # TODO(gunsch): Remove these fake targets once they're either added or no |
| 22 # longer referenced from internal code. |
| 23 {'target_name': 'cast_media_audio', 'type': 'none'}, |
| 24 {'target_name': 'cast_port_impl', 'type': 'none'}, |
| 25 |
| 21 { | 26 { |
| 22 'target_name': 'cast_base', | 27 'target_name': 'cast_base', |
| 23 'type': '<(component)', | 28 'type': '<(component)', |
| 24 'dependencies': [ | 29 'dependencies': [ |
| 25 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
| 26 ], | 31 ], |
| 27 'sources': [ | 32 'sources': [ |
| 28 'base/metrics/cast_histograms.h', | 33 'base/metrics/cast_histograms.h', |
| 29 'base/metrics/cast_metrics_helper.cc', | 34 'base/metrics/cast_metrics_helper.cc', |
| 30 'base/metrics/cast_metrics_helper.h', | 35 'base/metrics/cast_metrics_helper.h', |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 'cast_shell_core', | 464 'cast_shell_core', |
| 460 ], | 465 ], |
| 461 'sources': [ | 466 'sources': [ |
| 462 'app/cast_main.cc', | 467 'app/cast_main.cc', |
| 463 ], | 468 ], |
| 464 }, | 469 }, |
| 465 ], # end of targets | 470 ], # end of targets |
| 466 }], | 471 }], |
| 467 ], # end of conditions | 472 ], # end of conditions |
| 468 } | 473 } |
| OLD | NEW |