| 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 21 matching lines...) Expand all Loading... |
| 32 "audio_discard_helper.cc", | 32 "audio_discard_helper.cc", |
| 33 "audio_discard_helper.h", | 33 "audio_discard_helper.h", |
| 34 "audio_fifo.cc", | 34 "audio_fifo.cc", |
| 35 "audio_fifo.h", | 35 "audio_fifo.h", |
| 36 "audio_hardware_config.cc", | 36 "audio_hardware_config.cc", |
| 37 "audio_hardware_config.h", | 37 "audio_hardware_config.h", |
| 38 "audio_hash.cc", | 38 "audio_hash.cc", |
| 39 "audio_hash.h", | 39 "audio_hash.h", |
| 40 "audio_pull_fifo.cc", | 40 "audio_pull_fifo.cc", |
| 41 "audio_pull_fifo.h", | 41 "audio_pull_fifo.h", |
| 42 "audio_push_fifo.cc", |
| 43 "audio_push_fifo.h", |
| 42 "audio_renderer.cc", | 44 "audio_renderer.cc", |
| 43 "audio_renderer.h", | 45 "audio_renderer.h", |
| 44 "audio_renderer_mixer.cc", | 46 "audio_renderer_mixer.cc", |
| 45 "audio_renderer_mixer.h", | 47 "audio_renderer_mixer.h", |
| 46 "audio_renderer_mixer_input.cc", | 48 "audio_renderer_mixer_input.cc", |
| 47 "audio_renderer_mixer_input.h", | 49 "audio_renderer_mixer_input.h", |
| 48 "audio_renderer_sink.h", | 50 "audio_renderer_sink.h", |
| 49 "audio_shifter.cc", | 51 "audio_shifter.cc", |
| 50 "audio_shifter.h", | 52 "audio_shifter.h", |
| 51 "audio_splicer.cc", | 53 "audio_splicer.cc", |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "audio_buffer_converter_unittest.cc", | 376 "audio_buffer_converter_unittest.cc", |
| 375 "audio_buffer_queue_unittest.cc", | 377 "audio_buffer_queue_unittest.cc", |
| 376 "audio_buffer_unittest.cc", | 378 "audio_buffer_unittest.cc", |
| 377 "audio_bus_unittest.cc", | 379 "audio_bus_unittest.cc", |
| 378 "audio_converter_unittest.cc", | 380 "audio_converter_unittest.cc", |
| 379 "audio_discard_helper_unittest.cc", | 381 "audio_discard_helper_unittest.cc", |
| 380 "audio_fifo_unittest.cc", | 382 "audio_fifo_unittest.cc", |
| 381 "audio_hardware_config_unittest.cc", | 383 "audio_hardware_config_unittest.cc", |
| 382 "audio_hash_unittest.cc", | 384 "audio_hash_unittest.cc", |
| 383 "audio_pull_fifo_unittest.cc", | 385 "audio_pull_fifo_unittest.cc", |
| 386 "audio_push_fifo_unittest.cc", |
| 384 "audio_renderer_mixer_input_unittest.cc", | 387 "audio_renderer_mixer_input_unittest.cc", |
| 385 "audio_renderer_mixer_unittest.cc", | 388 "audio_renderer_mixer_unittest.cc", |
| 386 "audio_shifter_unittest.cc", | 389 "audio_shifter_unittest.cc", |
| 387 "audio_splicer_unittest.cc", | 390 "audio_splicer_unittest.cc", |
| 388 "audio_timestamp_helper_unittest.cc", | 391 "audio_timestamp_helper_unittest.cc", |
| 389 "bind_to_current_loop_unittest.cc", | 392 "bind_to_current_loop_unittest.cc", |
| 390 "bit_reader_unittest.cc", | 393 "bit_reader_unittest.cc", |
| 391 "callback_holder.h", | 394 "callback_holder.h", |
| 392 "callback_holder_unittest.cc", | 395 "callback_holder_unittest.cc", |
| 393 "channel_mixer_unittest.cc", | 396 "channel_mixer_unittest.cc", |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 } | 549 } |
| 547 | 550 |
| 548 fuzzer_test("media_container_names_fuzzer") { | 551 fuzzer_test("media_container_names_fuzzer") { |
| 549 sources = [ | 552 sources = [ |
| 550 "container_names_fuzzertest.cc", | 553 "container_names_fuzzertest.cc", |
| 551 ] | 554 ] |
| 552 deps = [ | 555 deps = [ |
| 553 "//media", | 556 "//media", |
| 554 ] | 557 ] |
| 555 } | 558 } |
| OLD | NEW |