| 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 'cast_build_release': 'internal/build/cast_build_release', | 9 'cast_build_release': 'internal/build/cast_build_release', |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| 11 'chromecast_branding%': 'Chromium', | 11 'chromecast_branding%': 'Chromium', |
| 12 'disable_display%': 0, | 12 'disable_display%': 0, |
| 13 }, | 13 }, |
| 14 'includes': [ | 14 'includes': [ |
| 15 'chromecast_tests.gypi', | 15 'chromecast_tests.gypi', |
| 16 ], | 16 ], |
| 17 'target_defaults': { | 17 'target_defaults': { |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '..', # Root of Chromium checkout | 19 '..', # Root of Chromium checkout |
| 20 ], | 20 ], |
| 21 'conditions': [ | 21 'conditions': [ |
| 22 ['disable_display==1', { | 22 ['disable_display==1', { |
| 23 'defines': ['DISABLE_DISPLAY'], | 23 'defines': ['DISABLE_DISPLAY'], |
| 24 }], | 24 }], |
| 25 ], | 25 ], |
| 26 }, | 26 }, |
| 27 'targets': [ | 27 'targets': [ |
| 28 # TODO(gunsch): Remove these fake targets once they're either added or no | 28 # TODO(gunsch): Remove this fake target once it's either added or no |
| 29 # longer referenced from internal code. | 29 # longer referenced from internal code. |
| 30 {'target_name': 'cast_media_audio', 'type': 'none'}, | 30 {'target_name': 'cast_media_audio', 'type': 'none'}, |
| 31 {'target_name': 'cast_port_impl', 'type': 'none'}, | |
| 32 | 31 |
| 33 { | 32 { |
| 34 'target_name': 'cast_base', | 33 'target_name': 'cast_base', |
| 35 'type': '<(component)', | 34 'type': '<(component)', |
| 36 'dependencies': [ | 35 'dependencies': [ |
| 37 '../base/base.gyp:base', | 36 '../base/base.gyp:base', |
| 38 ], | 37 ], |
| 39 'sources': [ | 38 'sources': [ |
| 40 'base/metrics/cast_histograms.h', | 39 'base/metrics/cast_histograms.h', |
| 41 'base/metrics/cast_metrics_helper.cc', | 40 'base/metrics/cast_metrics_helper.cc', |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 531 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
| 533 # Allow the cast shell to find the NSS module in the same directory. | 532 # Allow the cast shell to find the NSS module in the same directory. |
| 534 'ldflags': [ | 533 'ldflags': [ |
| 535 '-Wl,-rpath=\$$ORIGIN' | 534 '-Wl,-rpath=\$$ORIGIN' |
| 536 ], | 535 ], |
| 537 }, | 536 }, |
| 538 ], # end of targets | 537 ], # end of targets |
| 539 }], | 538 }], |
| 540 ], # end of conditions | 539 ], # end of conditions |
| 541 } | 540 } |
| OLD | NEW |