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

Side by Side Diff: media/media.gyp

Issue 10826296: Introduce shared_memory_support media target for PPAPI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « media/base/channel_layout.cc ('k') | media/media_untrusted.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
11 'use_cras%': 0, 11 'use_cras%': 0,
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 # Minimal target for NaCl and other renderer side media clients which only
16 # need to send audio data across the shared memory to the browser process.
17 'target_name': 'shared_memory_support',
18 'type': '<(component)',
19 'dependencies': [
20 '../base/base.gyp:base',
21 ],
22 'defines': [
23 'MEDIA_IMPLEMENTATION',
24 ],
25 'include_dirs': [
26 '..',
27 ],
28 'includes': [
29 'shared_memory_support.gypi',
30 ],
31 'sources': [
32 '<@(shared_memory_support_sources)',
33 ],
34 },
35 {
15 'target_name': 'media', 36 'target_name': 'media',
16 'type': '<(component)', 37 'type': '<(component)',
17 'dependencies': [ 38 'dependencies': [
18 '../base/base.gyp:base', 39 '../base/base.gyp:base',
19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 40 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
20 '../build/temp_gyp/googleurl.gyp:googleurl', 41 '../build/temp_gyp/googleurl.gyp:googleurl',
21 '../crypto/crypto.gyp:crypto', 42 '../crypto/crypto.gyp:crypto',
43 'shared_memory_support',
22 '../ui/ui.gyp:ui', 44 '../ui/ui.gyp:ui',
23 'yuv_convert', 45 'yuv_convert',
24 ], 46 ],
25 'defines': [ 47 'defines': [
26 'MEDIA_IMPLEMENTATION', 48 'MEDIA_IMPLEMENTATION',
27 ], 49 ],
28 'include_dirs': [ 50 'include_dirs': [
29 '..', 51 '..',
30 ], 52 ],
31 'sources': [ 53 'sources': [
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'audio/audio_output_dispatcher.cc', 86 'audio/audio_output_dispatcher.cc',
65 'audio/audio_output_dispatcher.h', 87 'audio/audio_output_dispatcher.h',
66 'audio/audio_output_dispatcher_impl.cc', 88 'audio/audio_output_dispatcher_impl.cc',
67 'audio/audio_output_dispatcher_impl.h', 89 'audio/audio_output_dispatcher_impl.h',
68 'audio/audio_output_ipc.cc', 90 'audio/audio_output_ipc.cc',
69 'audio/audio_output_ipc.h', 91 'audio/audio_output_ipc.h',
70 'audio/audio_output_mixer.cc', 92 'audio/audio_output_mixer.cc',
71 'audio/audio_output_mixer.h', 93 'audio/audio_output_mixer.h',
72 'audio/audio_output_proxy.cc', 94 'audio/audio_output_proxy.cc',
73 'audio/audio_output_proxy.h', 95 'audio/audio_output_proxy.h',
74 'audio/audio_parameters.cc',
75 'audio/audio_parameters.h',
76 'audio/audio_util.cc', 96 'audio/audio_util.cc',
77 'audio/audio_util.h', 97 'audio/audio_util.h',
78 'audio/cross_process_notification.cc', 98 'audio/cross_process_notification.cc',
79 'audio/cross_process_notification.h', 99 'audio/cross_process_notification.h',
80 'audio/cross_process_notification_posix.cc', 100 'audio/cross_process_notification_posix.cc',
81 'audio/cross_process_notification_win.cc', 101 'audio/cross_process_notification_win.cc',
82 'audio/fake_audio_input_stream.cc', 102 'audio/fake_audio_input_stream.cc',
83 'audio/fake_audio_input_stream.h', 103 'audio/fake_audio_input_stream.h',
84 'audio/fake_audio_output_stream.cc', 104 'audio/fake_audio_output_stream.cc',
85 'audio/fake_audio_output_stream.h', 105 'audio/fake_audio_output_stream.h',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'audio/win/avrt_wrapper_win.cc', 148 'audio/win/avrt_wrapper_win.cc',
129 'audio/win/avrt_wrapper_win.h', 149 'audio/win/avrt_wrapper_win.h',
130 'audio/win/device_enumeration_win.cc', 150 'audio/win/device_enumeration_win.cc',
131 'audio/win/device_enumeration_win.h', 151 'audio/win/device_enumeration_win.h',
132 'audio/win/wavein_input_win.cc', 152 'audio/win/wavein_input_win.cc',
133 'audio/win/wavein_input_win.h', 153 'audio/win/wavein_input_win.h',
134 'audio/win/waveout_output_win.cc', 154 'audio/win/waveout_output_win.cc',
135 'audio/win/waveout_output_win.h', 155 'audio/win/waveout_output_win.h',
136 'base/android/media_jni_registrar.cc', 156 'base/android/media_jni_registrar.cc',
137 'base/android/media_jni_registrar.h', 157 'base/android/media_jni_registrar.h',
138 'base/audio_bus.cc',
139 'base/audio_bus.h',
140 'base/audio_decoder.cc', 158 'base/audio_decoder.cc',
141 'base/audio_decoder.h', 159 'base/audio_decoder.h',
142 'base/audio_decoder_config.cc', 160 'base/audio_decoder_config.cc',
143 'base/audio_decoder_config.h', 161 'base/audio_decoder_config.h',
144 'base/audio_renderer.cc', 162 'base/audio_renderer.cc',
145 'base/audio_renderer.h', 163 'base/audio_renderer.h',
146 'base/audio_renderer_mixer.cc', 164 'base/audio_renderer_mixer.cc',
147 'base/audio_renderer_mixer.h', 165 'base/audio_renderer_mixer.h',
148 'base/audio_renderer_mixer_input.cc', 166 'base/audio_renderer_mixer_input.cc',
149 'base/audio_renderer_mixer_input.h', 167 'base/audio_renderer_mixer_input.h',
150 'base/bind_to_loop.h', 168 'base/bind_to_loop.h',
151 'base/bitstream_buffer.h', 169 'base/bitstream_buffer.h',
152 'base/bit_reader.cc', 170 'base/bit_reader.cc',
153 'base/bit_reader.h', 171 'base/bit_reader.h',
154 'base/buffers.cc', 172 'base/buffers.cc',
155 'base/buffers.h', 173 'base/buffers.h',
156 'base/byte_queue.cc', 174 'base/byte_queue.cc',
157 'base/byte_queue.h', 175 'base/byte_queue.h',
158 'base/channel_layout.cc',
159 'base/channel_layout.h',
160 'base/clock.cc', 176 'base/clock.cc',
161 'base/clock.h', 177 'base/clock.h',
162 'base/data_buffer.cc', 178 'base/data_buffer.cc',
163 'base/data_buffer.h', 179 'base/data_buffer.h',
164 'base/data_source.cc', 180 'base/data_source.cc',
165 'base/data_source.h', 181 'base/data_source.h',
166 'base/decoder_buffer.cc', 182 'base/decoder_buffer.cc',
167 'base/decoder_buffer.h', 183 'base/decoder_buffer.h',
168 'base/decryptor.h', 184 'base/decryptor.h',
169 'base/decryptor_client.h', 185 'base/decryptor_client.h',
170 'base/decrypt_config.cc', 186 'base/decrypt_config.cc',
171 'base/decrypt_config.h', 187 'base/decrypt_config.h',
172 'base/demuxer.cc', 188 'base/demuxer.cc',
173 'base/demuxer.h', 189 'base/demuxer.h',
174 'base/demuxer_stream.cc', 190 'base/demuxer_stream.cc',
175 'base/demuxer_stream.h', 191 'base/demuxer_stream.h',
176 'base/djb2.cc', 192 'base/djb2.cc',
177 'base/djb2.h', 193 'base/djb2.h',
178 'base/filter_collection.cc', 194 'base/filter_collection.cc',
179 'base/filter_collection.h', 195 'base/filter_collection.h',
180 'base/media.h', 196 'base/media.h',
181 'base/media_android.cc', 197 'base/media_android.cc',
182 'base/media_export.h',
183 'base/media_log.cc', 198 'base/media_log.cc',
184 'base/media_log.h', 199 'base/media_log.h',
185 'base/media_log_event.h', 200 'base/media_log_event.h',
186 'base/media_posix.cc', 201 'base/media_posix.cc',
187 'base/media_switches.cc', 202 'base/media_switches.cc',
188 'base/media_switches.h', 203 'base/media_switches.h',
189 'base/media_win.cc', 204 'base/media_win.cc',
190 'base/message_loop_factory.cc', 205 'base/message_loop_factory.cc',
191 'base/message_loop_factory.h', 206 'base/message_loop_factory.h',
192 'base/multi_channel_resampler.cc', 207 'base/multi_channel_resampler.cc',
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 'base/simd/yuv_to_rgb_table.cc', 670 'base/simd/yuv_to_rgb_table.cc',
656 'base/simd/yuv_to_rgb_table.h', 671 'base/simd/yuv_to_rgb_table.h',
657 ], 672 ],
658 }, 673 },
659 { 674 {
660 'target_name': 'media_unittests', 675 'target_name': 'media_unittests',
661 'type': '<(gtest_target_type)', 676 'type': '<(gtest_target_type)',
662 'dependencies': [ 677 'dependencies': [
663 'media', 678 'media',
664 'media_test_support', 679 'media_test_support',
680 'shared_memory_support',
665 'yuv_convert', 681 'yuv_convert',
666 '../base/base.gyp:base', 682 '../base/base.gyp:base',
667 '../base/base.gyp:base_i18n', 683 '../base/base.gyp:base_i18n',
668 '../base/base.gyp:test_support_base', 684 '../base/base.gyp:test_support_base',
669 '../testing/gmock.gyp:gmock', 685 '../testing/gmock.gyp:gmock',
670 '../testing/gtest.gyp:gtest', 686 '../testing/gtest.gyp:gtest',
671 '../ui/ui.gyp:ui', 687 '../ui/ui.gyp:ui',
672 ], 688 ],
673 'sources': [ 689 'sources': [
674 'audio/async_socket_io_handler_unittest.cc', 690 'audio/async_socket_io_handler_unittest.cc',
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 'media', 1174 'media',
1159 ], 1175 ],
1160 'sources': [ 1176 'sources': [
1161 'tools/media_bench/media_bench.cc', 1177 'tools/media_bench/media_bench.cc',
1162 ], 1178 ],
1163 }, 1179 },
1164 ], 1180 ],
1165 }] 1181 }]
1166 ], 1182 ],
1167 } 1183 }
OLDNEW
« no previous file with comments | « media/base/channel_layout.cc ('k') | media/media_untrusted.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698