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, |
(...skipping 18 matching lines...) Expand all Loading... |
29 }, | 29 }, |
30 'targets': [ | 30 'targets': [ |
31 # Public API target for OEM partners to replace shlibs. | 31 # Public API target for OEM partners to replace shlibs. |
32 { | 32 { |
33 'target_name': 'cast_public_api', | 33 'target_name': 'cast_public_api', |
34 'type': '<(component)', | 34 'type': '<(component)', |
35 'sources': [ | 35 'sources': [ |
36 'public/cast_egl_platform.h', | 36 'public/cast_egl_platform.h', |
37 'public/cast_egl_platform_shlib.h', | 37 'public/cast_egl_platform_shlib.h', |
38 'public/chromecast_export.h', | 38 'public/chromecast_export.h', |
| 39 'public/media/decoder_config.cc', |
| 40 'public/media/decoder_config.h', |
39 ], | 41 ], |
40 }, | 42 }, |
41 # TODO(gunsch): Remove this fake target once it's either added or no | 43 # TODO(gunsch): Remove this fake target once it's either added or no |
42 # longer referenced from internal code. | 44 # longer referenced from internal code. |
43 {'target_name': 'cast_media_audio', 'type': 'none'}, | 45 {'target_name': 'cast_media_audio', 'type': 'none'}, |
44 | 46 |
45 { | 47 { |
46 'target_name': 'cast_base', | 48 'target_name': 'cast_base', |
47 'type': '<(component)', | 49 'type': '<(component)', |
48 'dependencies': [ | 50 'dependencies': [ |
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
582 'cast_public_api' | 584 'cast_public_api' |
583 ], | 585 ], |
584 'sources': [ | 586 'sources': [ |
585 'graphics/cast_egl_platform_default.cc' | 587 'graphics/cast_egl_platform_default.cc' |
586 ], | 588 ], |
587 } | 589 } |
588 ] | 590 ] |
589 }], | 591 }], |
590 ], # end of conditions | 592 ], # end of conditions |
591 } | 593 } |
OLD | NEW |