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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1105803002: Exposes a shlib interface for media/audio path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment out streaming test until the default implementation is improved. Created 5 years, 4 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
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 'cast_is_debug_build%': 0, 10 'cast_is_debug_build%': 0,
(...skipping 25 matching lines...) Expand all
36 'target_name': 'cast_public_api', 36 'target_name': 'cast_public_api',
37 'type': '<(component)', 37 'type': '<(component)',
38 'sources': [ 38 'sources': [
39 'public/cast_egl_platform.h', 39 'public/cast_egl_platform.h',
40 'public/cast_egl_platform_shlib.h', 40 'public/cast_egl_platform_shlib.h',
41 'public/cast_media_shlib.h', 41 'public/cast_media_shlib.h',
42 'public/cast_sys_info.h', 42 'public/cast_sys_info.h',
43 'public/chromecast_export.h', 43 'public/chromecast_export.h',
44 'public/graphics_properties_shlib.h', 44 'public/graphics_properties_shlib.h',
45 'public/graphics_types.h', 45 'public/graphics_types.h',
46 'public/media/cast_audio_output_device.h',
47 'public/media/cast_audio_output_stream.h',
46 'public/media/decoder_config.h', 48 'public/media/decoder_config.h',
47 'public/media/stream_id.h', 49 'public/media/stream_id.h',
48 'public/osd_plane.h', 50 'public/osd_plane.h',
49 'public/osd_plane_shlib.h', 51 'public/osd_plane_shlib.h',
50 'public/osd_surface.h', 52 'public/osd_surface.h',
51 'public/video_plane.h', 53 'public/video_plane.h',
52 ], 54 ],
53 }, 55 },
54 { 56 {
55 'target_name': 'cast_base', 57 'target_name': 'cast_base',
(...skipping 13 matching lines...) Expand all
69 'base/metrics/cast_histograms.h', 71 'base/metrics/cast_histograms.h',
70 'base/metrics/cast_metrics_helper.cc', 72 'base/metrics/cast_metrics_helper.cc',
71 'base/metrics/cast_metrics_helper.h', 73 'base/metrics/cast_metrics_helper.h',
72 'base/metrics/grouped_histogram.cc', 74 'base/metrics/grouped_histogram.cc',
73 'base/metrics/grouped_histogram.h', 75 'base/metrics/grouped_histogram.h',
74 'base/path_utils.cc', 76 'base/path_utils.cc',
75 'base/path_utils.h', 77 'base/path_utils.h',
76 'base/process_utils.cc', 78 'base/process_utils.cc',
77 'base/process_utils.h', 79 'base/process_utils.h',
78 'base/serializers.cc', 80 'base/serializers.cc',
79 'base/serializers.h' 81 'base/serializers.h',
82 'base/task_runner_impl.cc',
83 'base/task_runner_impl.h',
80 ], 84 ],
81 'conditions': [ 85 'conditions': [
82 ['OS=="android"', { 86 ['OS=="android"', {
83 'dependencies': [ 87 'dependencies': [
84 'cast_jni_headers', 88 'cast_jni_headers',
85 ], 89 ],
86 }], 90 }],
87 ], 91 ],
88 }, # end of target 'cast_base' 92 }, # end of target 'cast_base'
89 { 93 {
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'sources': [ 714 'sources': [
711 'graphics/cast_egl_platform_default.cc', 715 'graphics/cast_egl_platform_default.cc',
712 'graphics/graphics_properties_default.cc', 716 'graphics/graphics_properties_default.cc',
713 'graphics/osd_plane_default.cc' 717 'graphics/osd_plane_default.cc'
714 ], 718 ],
715 } 719 }
716 ] 720 ]
717 }], 721 }],
718 ], # end of conditions 722 ], # end of conditions
719 } 723 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698