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 'use_chromecast_webui%': 0, | 13 'use_chromecast_webui%': 0, |
14 }, | 14 }, |
15 'includes': [ | 15 'includes': [ |
16 'chromecast_tests.gypi', | 16 'chromecast_tests.gypi', |
17 ], | 17 ], |
18 'target_defaults': { | 18 'target_defaults': { |
19 'include_dirs': [ | 19 'include_dirs': [ |
20 '..', # Root of Chromium checkout | 20 '..', # Root of Chromium checkout |
21 ], | 21 ], |
22 'conditions': [ | 22 'conditions': [ |
23 ['disable_display==1', { | 23 ['disable_display==1', { |
24 'defines': ['DISABLE_DISPLAY'], | 24 'defines': ['DISABLE_DISPLAY'], |
25 }], | 25 }], |
26 ], | 26 ], |
27 }, | 27 }, |
28 'targets': [ | 28 'targets': [ |
29 # Public API target for OEM partners to replace shlibs. | |
30 { | |
31 'target_name': 'cast_public_api', | |
32 'type': '<(component)', | |
33 'sources': [ | |
34 'public/chromecast_export.h', | |
35 ], | |
36 }, | |
37 | |
byungchul
2015/03/24 21:06:10
extra blank line
halliwell
2015/03/24 21:19:56
Done.
| |
29 # TODO(gunsch): Remove this fake target once it's either added or no | 38 # TODO(gunsch): Remove this fake target once it's either added or no |
30 # longer referenced from internal code. | 39 # longer referenced from internal code. |
31 {'target_name': 'cast_media_audio', 'type': 'none'}, | 40 {'target_name': 'cast_media_audio', 'type': 'none'}, |
32 | 41 |
33 { | 42 { |
34 'target_name': 'cast_base', | 43 'target_name': 'cast_base', |
35 'type': '<(component)', | 44 'type': '<(component)', |
36 'dependencies': [ | 45 'dependencies': [ |
37 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
38 ], | 47 ], |
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
548 # TODO(dougsteed): remove when Chromecast moves to boringssl. | 557 # TODO(dougsteed): remove when Chromecast moves to boringssl. |
549 # Allow the cast shell to find the NSS module in the same directory. | 558 # Allow the cast shell to find the NSS module in the same directory. |
550 'ldflags': [ | 559 'ldflags': [ |
551 '-Wl,-rpath=\$$ORIGIN' | 560 '-Wl,-rpath=\$$ORIGIN' |
552 ], | 561 ], |
553 }, | 562 }, |
554 ], # end of targets | 563 ], # end of targets |
555 }], | 564 }], |
556 ], # end of conditions | 565 ], # end of conditions |
557 } | 566 } |
OLD | NEW |