| OLD | NEW |
| 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 'base/mock_audio_renderer_sink.cc', | 1111 'base/mock_audio_renderer_sink.cc', |
| 1112 'base/mock_audio_renderer_sink.h', | 1112 'base/mock_audio_renderer_sink.h', |
| 1113 'base/mock_data_source_host.cc', | 1113 'base/mock_data_source_host.cc', |
| 1114 'base/mock_data_source_host.h', | 1114 'base/mock_data_source_host.h', |
| 1115 'base/mock_demuxer_host.cc', | 1115 'base/mock_demuxer_host.cc', |
| 1116 'base/mock_demuxer_host.h', | 1116 'base/mock_demuxer_host.h', |
| 1117 'base/mock_filters.cc', | 1117 'base/mock_filters.cc', |
| 1118 'base/mock_filters.h', | 1118 'base/mock_filters.h', |
| 1119 'base/test_helpers.cc', | 1119 'base/test_helpers.cc', |
| 1120 'base/test_helpers.h', | 1120 'base/test_helpers.h', |
| 1121 'filters/mock_gpu_video_decoder_factories.cc', |
| 1122 'filters/mock_gpu_video_decoder_factories.h', |
| 1123 'video/mock_video_decode_accelerator.cc', |
| 1124 'video/mock_video_decode_accelerator.h', |
| 1121 ], | 1125 ], |
| 1122 }, | 1126 }, |
| 1123 ], | 1127 ], |
| 1124 'conditions': [ | 1128 'conditions': [ |
| 1125 ['OS!="ios" and target_arch!="arm"', { | 1129 ['OS!="ios" and target_arch!="arm"', { |
| 1126 'targets': [ | 1130 'targets': [ |
| 1127 { | 1131 { |
| 1128 'target_name': 'media_asm', | 1132 'target_name': 'media_asm', |
| 1129 'type': 'static_library', | 1133 'type': 'static_library', |
| 1130 'sources': [ | 1134 'sources': [ |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1628 'sources': [ | 1632 'sources': [ |
| 1629 'tools/media_bench/media_bench.cc', | 1633 'tools/media_bench/media_bench.cc', |
| 1630 ], | 1634 ], |
| 1631 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1635 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1632 'msvs_disabled_warnings': [ 4267, ], | 1636 'msvs_disabled_warnings': [ 4267, ], |
| 1633 }, | 1637 }, |
| 1634 ], | 1638 ], |
| 1635 }], | 1639 }], |
| 1636 ], | 1640 ], |
| 1637 } | 1641 } |
| OLD | NEW |