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

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: rebase, make Reset/Release async, and move RVD creation to RVDF::ctor 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 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after
1092 'base/mock_audio_renderer_sink.cc', 1092 'base/mock_audio_renderer_sink.cc',
1093 'base/mock_audio_renderer_sink.h', 1093 'base/mock_audio_renderer_sink.h',
1094 'base/mock_data_source_host.cc', 1094 'base/mock_data_source_host.cc',
1095 'base/mock_data_source_host.h', 1095 'base/mock_data_source_host.h',
1096 'base/mock_demuxer_host.cc', 1096 'base/mock_demuxer_host.cc',
1097 'base/mock_demuxer_host.h', 1097 'base/mock_demuxer_host.h',
1098 'base/mock_filters.cc', 1098 'base/mock_filters.cc',
1099 'base/mock_filters.h', 1099 'base/mock_filters.h',
1100 'base/test_helpers.cc', 1100 'base/test_helpers.cc',
1101 'base/test_helpers.h', 1101 'base/test_helpers.h',
1102 'filters/mock_gpu_video_decoder_factories.h',
1103 'video/capture/screen/screen_capturer_mock_objects.cc',
1104 'video/capture/screen/screen_capturer_mock_objects.h',
1105 'video/mock_video_decode_accelerator.h',
1102 ], 1106 ],
1103 }, 1107 },
1104 ], 1108 ],
1105 'conditions': [ 1109 'conditions': [
1106 ['OS!="ios" and target_arch!="arm"', { 1110 ['OS!="ios" and target_arch!="arm"', {
1107 'targets': [ 1111 'targets': [
1108 { 1112 {
1109 'target_name': 'media_asm', 1113 'target_name': 'media_asm',
1110 'type': 'static_library', 1114 'type': 'static_library',
1111 'sources': [ 1115 'sources': [
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1609 'sources': [ 1613 'sources': [
1610 'tools/media_bench/media_bench.cc', 1614 'tools/media_bench/media_bench.cc',
1611 ], 1615 ],
1612 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1616 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1613 'msvs_disabled_warnings': [ 4267, ], 1617 'msvs_disabled_warnings': [ 4267, ],
1614 }, 1618 },
1615 ], 1619 ],
1616 }], 1620 }],
1617 ], 1621 ],
1618 } 1622 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698