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

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

Powered by Google App Engine
This is Rietveld 408576698