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

Side by Side Diff: media/media.gyp

Issue 13890012: Integrate VDA with WebRTC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create new VDA thread, copy gpu_factories, and add DestructionObserver Created 7 years, 6 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 (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 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 'base/mock_audio_renderer_sink.cc', 1164 'base/mock_audio_renderer_sink.cc',
1165 'base/mock_audio_renderer_sink.h', 1165 'base/mock_audio_renderer_sink.h',
1166 'base/mock_data_source_host.cc', 1166 'base/mock_data_source_host.cc',
1167 'base/mock_data_source_host.h', 1167 'base/mock_data_source_host.h',
1168 'base/mock_demuxer_host.cc', 1168 'base/mock_demuxer_host.cc',
1169 'base/mock_demuxer_host.h', 1169 'base/mock_demuxer_host.h',
1170 'base/mock_filters.cc', 1170 'base/mock_filters.cc',
1171 'base/mock_filters.h', 1171 'base/mock_filters.h',
1172 'base/test_helpers.cc', 1172 'base/test_helpers.cc',
1173 'base/test_helpers.h', 1173 'base/test_helpers.h',
1174 'filters/mock_gpu_video_decoder_factories.h',
1175 'video/mock_video_decode_accelerator.h',
Pawel Osciak 2013/06/12 23:38:22 alpha order?
wuchengli 2013/06/13 10:28:07 Done.
1174 'video/capture/screen/screen_capturer_mock_objects.cc', 1176 'video/capture/screen/screen_capturer_mock_objects.cc',
1175 'video/capture/screen/screen_capturer_mock_objects.h', 1177 'video/capture/screen/screen_capturer_mock_objects.h',
1176 ], 1178 ],
1177 'conditions': [ 1179 'conditions': [
1178 ['screen_capture_supported==1', { 1180 ['screen_capture_supported==1', {
1179 'dependencies': [ 1181 'dependencies': [
1180 '../third_party/webrtc/modules/modules.gyp:desktop_capture', 1182 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
1181 ], 1183 ],
1182 }, { 1184 }, {
1183 'sources/': [ 1185 'sources/': [
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
1701 'sources': [ 1703 'sources': [
1702 'tools/media_bench/media_bench.cc', 1704 'tools/media_bench/media_bench.cc',
1703 ], 1705 ],
1704 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1706 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1705 'msvs_disabled_warnings': [ 4267, ], 1707 'msvs_disabled_warnings': [ 4267, ],
1706 }, 1708 },
1707 ], 1709 ],
1708 }], 1710 }],
1709 ], 1711 ],
1710 } 1712 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698