| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "fake_audio_render_callback.cc", | 351 "fake_audio_render_callback.cc", |
| 352 "fake_audio_render_callback.h", | 352 "fake_audio_render_callback.h", |
| 353 "fake_audio_renderer_sink.cc", | 353 "fake_audio_renderer_sink.cc", |
| 354 "fake_audio_renderer_sink.h", | 354 "fake_audio_renderer_sink.h", |
| 355 "fake_demuxer_stream.cc", | 355 "fake_demuxer_stream.cc", |
| 356 "fake_demuxer_stream.h", | 356 "fake_demuxer_stream.h", |
| 357 "fake_media_resources.cc", | 357 "fake_media_resources.cc", |
| 358 "fake_media_resources.h", | 358 "fake_media_resources.h", |
| 359 "fake_output_device.cc", | 359 "fake_output_device.cc", |
| 360 "fake_output_device.h", | 360 "fake_output_device.h", |
| 361 "fake_single_thread_task_runner.cc", |
| 362 "fake_single_thread_task_runner.h", |
| 361 "fake_text_track_stream.cc", | 363 "fake_text_track_stream.cc", |
| 362 "fake_text_track_stream.h", | 364 "fake_text_track_stream.h", |
| 363 "gmock_callback_support.h", | 365 "gmock_callback_support.h", |
| 364 "mock_audio_renderer_sink.cc", | 366 "mock_audio_renderer_sink.cc", |
| 365 "mock_audio_renderer_sink.h", | 367 "mock_audio_renderer_sink.h", |
| 366 "mock_demuxer_host.cc", | 368 "mock_demuxer_host.cc", |
| 367 "mock_demuxer_host.h", | 369 "mock_demuxer_host.h", |
| 368 "mock_filters.cc", | 370 "mock_filters.cc", |
| 369 "mock_filters.h", | 371 "mock_filters.h", |
| 370 "mock_media_log.cc", | 372 "mock_media_log.cc", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 | 575 |
| 574 fuzzer_test("media_container_names_fuzzer") { | 576 fuzzer_test("media_container_names_fuzzer") { |
| 575 sources = [ | 577 sources = [ |
| 576 "container_names_fuzzertest.cc", | 578 "container_names_fuzzertest.cc", |
| 577 ] | 579 ] |
| 578 deps = [ | 580 deps = [ |
| 579 "//base", | 581 "//base", |
| 580 "//media", | 582 "//media", |
| 581 ] | 583 ] |
| 582 } | 584 } |
| OLD | NEW |