Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: chromecast/chromecast.gyp

Issue 1036503003: Add CHROMECAST_EXPORT definition for OEM shlib replacement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move chromecast_export.h up a level. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chromecast/chromecast_export.h » ('j') | chromecast/chromecast_export.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'chromecast_export.h',
35 ],
36 },
29 # TODO(gunsch): Remove this fake target once it's either added or no 37 # TODO(gunsch): Remove this fake target once it's either added or no
30 # longer referenced from internal code. 38 # longer referenced from internal code.
31 {'target_name': 'cast_media_audio', 'type': 'none'}, 39 {'target_name': 'cast_media_audio', 'type': 'none'},
32 40
33 { 41 {
34 'target_name': 'cast_base', 42 'target_name': 'cast_base',
35 'type': '<(component)', 43 'type': '<(component)',
36 'dependencies': [ 44 'dependencies': [
37 '../base/base.gyp:base', 45 '../base/base.gyp:base',
38 ], 46 ],
(...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after
548 # TODO(dougsteed): remove when Chromecast moves to boringssl. 556 # TODO(dougsteed): remove when Chromecast moves to boringssl.
549 # Allow the cast shell to find the NSS module in the same directory. 557 # Allow the cast shell to find the NSS module in the same directory.
550 'ldflags': [ 558 'ldflags': [
551 '-Wl,-rpath=\$$ORIGIN' 559 '-Wl,-rpath=\$$ORIGIN'
552 ], 560 ],
553 }, 561 },
554 ], # end of targets 562 ], # end of targets
555 }], 563 }],
556 ], # end of conditions 564 ], # end of conditions
557 } 565 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/chromecast_export.h » ('j') | chromecast/chromecast_export.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698