| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "mime_util.cc", | 148 "mime_util.cc", |
| 149 "mime_util.h", | 149 "mime_util.h", |
| 150 "mime_util_internal.cc", | 150 "mime_util_internal.cc", |
| 151 "mime_util_internal.h", | 151 "mime_util_internal.h", |
| 152 "moving_average.cc", | 152 "moving_average.cc", |
| 153 "moving_average.h", | 153 "moving_average.h", |
| 154 "multi_channel_resampler.cc", | 154 "multi_channel_resampler.cc", |
| 155 "multi_channel_resampler.h", | 155 "multi_channel_resampler.h", |
| 156 "null_video_sink.cc", | 156 "null_video_sink.cc", |
| 157 "null_video_sink.h", | 157 "null_video_sink.h", |
| 158 "output_device.h", | 158 "output_device_info.cc", |
| 159 "output_device_info.h", |
| 159 "pipeline.h", | 160 "pipeline.h", |
| 160 "pipeline_impl.cc", | 161 "pipeline_impl.cc", |
| 161 "pipeline_impl.h", | 162 "pipeline_impl.h", |
| 162 "pipeline_status.h", | 163 "pipeline_status.h", |
| 163 "player_tracker.cc", | 164 "player_tracker.cc", |
| 164 "player_tracker.h", | 165 "player_tracker.h", |
| 165 "ranges.cc", | 166 "ranges.cc", |
| 166 "ranges.h", | 167 "ranges.h", |
| 167 "renderer.cc", | 168 "renderer.cc", |
| 168 "renderer.h", | 169 "renderer.h", |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 testonly = true | 352 testonly = true |
| 352 sources = [ | 353 sources = [ |
| 353 "fake_audio_render_callback.cc", | 354 "fake_audio_render_callback.cc", |
| 354 "fake_audio_render_callback.h", | 355 "fake_audio_render_callback.h", |
| 355 "fake_audio_renderer_sink.cc", | 356 "fake_audio_renderer_sink.cc", |
| 356 "fake_audio_renderer_sink.h", | 357 "fake_audio_renderer_sink.h", |
| 357 "fake_demuxer_stream.cc", | 358 "fake_demuxer_stream.cc", |
| 358 "fake_demuxer_stream.h", | 359 "fake_demuxer_stream.h", |
| 359 "fake_media_resources.cc", | 360 "fake_media_resources.cc", |
| 360 "fake_media_resources.h", | 361 "fake_media_resources.h", |
| 361 "fake_output_device.cc", | |
| 362 "fake_output_device.h", | |
| 363 "fake_single_thread_task_runner.cc", | 362 "fake_single_thread_task_runner.cc", |
| 364 "fake_single_thread_task_runner.h", | 363 "fake_single_thread_task_runner.h", |
| 365 "fake_text_track_stream.cc", | 364 "fake_text_track_stream.cc", |
| 366 "fake_text_track_stream.h", | 365 "fake_text_track_stream.h", |
| 367 "gmock_callback_support.h", | 366 "gmock_callback_support.h", |
| 368 "mock_audio_renderer_sink.cc", | 367 "mock_audio_renderer_sink.cc", |
| 369 "mock_audio_renderer_sink.h", | 368 "mock_audio_renderer_sink.h", |
| 370 "mock_demuxer_host.cc", | 369 "mock_demuxer_host.cc", |
| 371 "mock_demuxer_host.h", | 370 "mock_demuxer_host.h", |
| 372 "mock_filters.cc", | 371 "mock_filters.cc", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 | 576 |
| 578 fuzzer_test("media_container_names_fuzzer") { | 577 fuzzer_test("media_container_names_fuzzer") { |
| 579 sources = [ | 578 sources = [ |
| 580 "container_names_fuzzertest.cc", | 579 "container_names_fuzzertest.cc", |
| 581 ] | 580 ] |
| 582 deps = [ | 581 deps = [ |
| 583 "//base", | 582 "//base", |
| 584 "//media", | 583 "//media", |
| 585 ] | 584 ] |
| 586 } | 585 } |
| OLD | NEW |