| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "audio_decoder_config.cc", | 44 "audio_decoder_config.cc", |
| 45 "audio_decoder_config.h", | 45 "audio_decoder_config.h", |
| 46 "audio_discard_helper.cc", | 46 "audio_discard_helper.cc", |
| 47 "audio_discard_helper.h", | 47 "audio_discard_helper.h", |
| 48 "audio_fifo.cc", | 48 "audio_fifo.cc", |
| 49 "audio_fifo.h", | 49 "audio_fifo.h", |
| 50 "audio_hardware_config.cc", | 50 "audio_hardware_config.cc", |
| 51 "audio_hardware_config.h", | 51 "audio_hardware_config.h", |
| 52 "audio_hash.cc", | 52 "audio_hash.cc", |
| 53 "audio_hash.h", | 53 "audio_hash.h", |
| 54 "audio_latency.cc", |
| 55 "audio_latency.h", |
| 54 "audio_pull_fifo.cc", | 56 "audio_pull_fifo.cc", |
| 55 "audio_pull_fifo.h", | 57 "audio_pull_fifo.h", |
| 56 "audio_push_fifo.cc", | 58 "audio_push_fifo.cc", |
| 57 "audio_push_fifo.h", | 59 "audio_push_fifo.h", |
| 58 "audio_renderer.cc", | 60 "audio_renderer.cc", |
| 59 "audio_renderer.h", | 61 "audio_renderer.h", |
| 60 "audio_renderer_mixer.cc", | 62 "audio_renderer_mixer.cc", |
| 61 "audio_renderer_mixer.h", | 63 "audio_renderer_mixer.h", |
| 62 "audio_renderer_mixer_input.cc", | 64 "audio_renderer_mixer_input.cc", |
| 63 "audio_renderer_mixer_input.h", | 65 "audio_renderer_mixer_input.h", |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 "audio_block_fifo_unittest.cc", | 419 "audio_block_fifo_unittest.cc", |
| 418 "audio_buffer_converter_unittest.cc", | 420 "audio_buffer_converter_unittest.cc", |
| 419 "audio_buffer_queue_unittest.cc", | 421 "audio_buffer_queue_unittest.cc", |
| 420 "audio_buffer_unittest.cc", | 422 "audio_buffer_unittest.cc", |
| 421 "audio_bus_unittest.cc", | 423 "audio_bus_unittest.cc", |
| 422 "audio_converter_unittest.cc", | 424 "audio_converter_unittest.cc", |
| 423 "audio_discard_helper_unittest.cc", | 425 "audio_discard_helper_unittest.cc", |
| 424 "audio_fifo_unittest.cc", | 426 "audio_fifo_unittest.cc", |
| 425 "audio_hardware_config_unittest.cc", | 427 "audio_hardware_config_unittest.cc", |
| 426 "audio_hash_unittest.cc", | 428 "audio_hash_unittest.cc", |
| 429 "audio_latency_unittest.cc", |
| 427 "audio_parameters_unittest.cc", | 430 "audio_parameters_unittest.cc", |
| 428 "audio_point_unittest.cc", | 431 "audio_point_unittest.cc", |
| 429 "audio_pull_fifo_unittest.cc", | 432 "audio_pull_fifo_unittest.cc", |
| 430 "audio_push_fifo_unittest.cc", | 433 "audio_push_fifo_unittest.cc", |
| 431 "audio_renderer_mixer_input_unittest.cc", | 434 "audio_renderer_mixer_input_unittest.cc", |
| 432 "audio_renderer_mixer_unittest.cc", | 435 "audio_renderer_mixer_unittest.cc", |
| 433 "audio_sample_types_unittest.cc", | 436 "audio_sample_types_unittest.cc", |
| 434 "audio_shifter_unittest.cc", | 437 "audio_shifter_unittest.cc", |
| 435 "audio_splicer_unittest.cc", | 438 "audio_splicer_unittest.cc", |
| 436 "audio_timestamp_helper_unittest.cc", | 439 "audio_timestamp_helper_unittest.cc", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 | 610 |
| 608 fuzzer_test("media_container_names_fuzzer") { | 611 fuzzer_test("media_container_names_fuzzer") { |
| 609 sources = [ | 612 sources = [ |
| 610 "container_names_fuzzertest.cc", | 613 "container_names_fuzzertest.cc", |
| 611 ] | 614 ] |
| 612 deps = [ | 615 deps = [ |
| 613 "//base", | 616 "//base", |
| 614 "//media", | 617 "//media", |
| 615 ] | 618 ] |
| 616 } | 619 } |
| OLD | NEW |