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

Side by Side Diff: media/media.gyp

Issue 22362007: Relocate last remnants of webkit/renderer/media code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
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 cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 'base/video_decoder_config.cc', 305 'base/video_decoder_config.cc',
306 'base/video_decoder_config.h', 306 'base/video_decoder_config.h',
307 'base/video_frame.cc', 307 'base/video_frame.cc',
308 'base/video_frame.h', 308 'base/video_frame.h',
309 'base/video_renderer.cc', 309 'base/video_renderer.cc',
310 'base/video_renderer.h', 310 'base/video_renderer.h',
311 'base/video_util.cc', 311 'base/video_util.cc',
312 'base/video_util.h', 312 'base/video_util.h',
313 'base/yuv_convert.cc', 313 'base/yuv_convert.cc',
314 'base/yuv_convert.h', 314 'base/yuv_convert.h',
315 'crypto/aes_decryptor.cc', 315 'cdm/aes_decryptor.cc',
316 'crypto/aes_decryptor.h', 316 'cdm/aes_decryptor.h',
317 'ffmpeg/ffmpeg_common.cc', 317 'ffmpeg/ffmpeg_common.cc',
318 'ffmpeg/ffmpeg_common.h', 318 'ffmpeg/ffmpeg_common.h',
319 'filters/audio_decoder_selector.cc', 319 'filters/audio_decoder_selector.cc',
320 'filters/audio_decoder_selector.h', 320 'filters/audio_decoder_selector.h',
321 'filters/audio_file_reader.cc', 321 'filters/audio_file_reader.cc',
322 'filters/audio_file_reader.h', 322 'filters/audio_file_reader.h',
323 'filters/audio_renderer_algorithm.cc', 323 'filters/audio_renderer_algorithm.cc',
324 'filters/audio_renderer_algorithm.h', 324 'filters/audio_renderer_algorithm.h',
325 'filters/audio_renderer_impl.cc', 325 'filters/audio_renderer_impl.cc',
326 'filters/audio_renderer_impl.h', 326 'filters/audio_renderer_impl.h',
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
933 'base/scoped_histogram_timer_unittest.cc', 933 'base/scoped_histogram_timer_unittest.cc',
934 'base/seekable_buffer_unittest.cc', 934 'base/seekable_buffer_unittest.cc',
935 'base/sinc_resampler_unittest.cc', 935 'base/sinc_resampler_unittest.cc',
936 'base/test_data_util.cc', 936 'base/test_data_util.cc',
937 'base/test_data_util.h', 937 'base/test_data_util.h',
938 'base/vector_math_testing.h', 938 'base/vector_math_testing.h',
939 'base/vector_math_unittest.cc', 939 'base/vector_math_unittest.cc',
940 'base/video_frame_unittest.cc', 940 'base/video_frame_unittest.cc',
941 'base/video_util_unittest.cc', 941 'base/video_util_unittest.cc',
942 'base/yuv_convert_unittest.cc', 942 'base/yuv_convert_unittest.cc',
943 'crypto/aes_decryptor_unittest.cc', 943 'cdm/aes_decryptor_unittest.cc',
944 'ffmpeg/ffmpeg_common_unittest.cc', 944 'ffmpeg/ffmpeg_common_unittest.cc',
945 'filters/audio_decoder_selector_unittest.cc', 945 'filters/audio_decoder_selector_unittest.cc',
946 'filters/audio_file_reader_unittest.cc', 946 'filters/audio_file_reader_unittest.cc',
947 'filters/audio_renderer_algorithm_unittest.cc', 947 'filters/audio_renderer_algorithm_unittest.cc',
948 'filters/audio_renderer_impl_unittest.cc', 948 'filters/audio_renderer_impl_unittest.cc',
949 'filters/blocking_url_protocol_unittest.cc', 949 'filters/blocking_url_protocol_unittest.cc',
950 'filters/chunk_demuxer_unittest.cc', 950 'filters/chunk_demuxer_unittest.cc',
951 'filters/decrypting_audio_decoder_unittest.cc', 951 'filters/decrypting_audio_decoder_unittest.cc',
952 'filters/decrypting_demuxer_stream_unittest.cc', 952 'filters/decrypting_demuxer_stream_unittest.cc',
953 'filters/decrypting_video_decoder_unittest.cc', 953 'filters/decrypting_video_decoder_unittest.cc',
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 'include_dirs': [ 1278 'include_dirs': [
1279 '..', 1279 '..',
1280 ], 1280 ],
1281 'sources': [ 1281 'sources': [
1282 'base/simd/vector_math_sse.cc', 1282 'base/simd/vector_math_sse.cc',
1283 ], 1283 ],
1284 }, 1284 },
1285 ], # targets 1285 ], # targets
1286 }], 1286 }],
1287 ['OS!="ios"', { 1287 ['OS!="ios"', {
1288 'includes': [
1289 'media_cdm.gypi',
1290 ],
1288 'targets': [ 1291 'targets': [
1289 { 1292 {
1290 # Minimal target for NaCl and other renderer side media clients which 1293 # Minimal target for NaCl and other renderer side media clients which
1291 # only need to send audio data across the shared memory to the browser 1294 # only need to send audio data across the shared memory to the browser
1292 # process. 1295 # process.
1293 'target_name': 'shared_memory_support', 1296 'target_name': 'shared_memory_support',
1294 'type': '<(component)', 1297 'type': '<(component)',
1295 'dependencies': [ 1298 'dependencies': [
1296 '../base/base.gyp:base', 1299 '../base/base.gyp:base',
1297 ], 1300 ],
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1630 'sources': [ 1633 'sources': [
1631 'tools/media_bench/media_bench.cc', 1634 'tools/media_bench/media_bench.cc',
1632 ], 1635 ],
1633 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1636 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1634 'msvs_disabled_warnings': [ 4267, ], 1637 'msvs_disabled_warnings': [ 4267, ],
1635 }, 1638 },
1636 ], 1639 ],
1637 }], 1640 }],
1638 ], 1641 ],
1639 } 1642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698