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

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: address review comments and update tests 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/mock_video_decode_accelerator.h',
1102 ], 1104 ],
1103 }, 1105 },
1104 ], 1106 ],
1105 'conditions': [ 1107 'conditions': [
1106 ['OS!="ios" and target_arch!="arm"', { 1108 ['OS!="ios" and target_arch!="arm"', {
1107 'targets': [ 1109 'targets': [
1108 { 1110 {
1109 'target_name': 'media_asm', 1111 'target_name': 'media_asm',
1110 'type': 'static_library', 1112 'type': 'static_library',
1111 'sources': [ 1113 'sources': [
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1609 'sources': [ 1611 'sources': [
1610 'tools/media_bench/media_bench.cc', 1612 'tools/media_bench/media_bench.cc',
1611 ], 1613 ],
1612 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1614 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1613 'msvs_disabled_warnings': [ 4267, ], 1615 'msvs_disabled_warnings': [ 4267, ],
1614 }, 1616 },
1615 ], 1617 ],
1616 }], 1618 }],
1617 ], 1619 ],
1618 } 1620 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698