| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "audio_renderer.cc", | 61 "audio_renderer.cc", |
| 62 "audio_renderer.h", | 62 "audio_renderer.h", |
| 63 "audio_renderer_mixer.cc", | 63 "audio_renderer_mixer.cc", |
| 64 "audio_renderer_mixer.h", | 64 "audio_renderer_mixer.h", |
| 65 "audio_renderer_mixer_input.cc", | 65 "audio_renderer_mixer_input.cc", |
| 66 "audio_renderer_mixer_input.h", | 66 "audio_renderer_mixer_input.h", |
| 67 "audio_renderer_mixer_pool.h", | 67 "audio_renderer_mixer_pool.h", |
| 68 "audio_renderer_sink.h", | 68 "audio_renderer_sink.h", |
| 69 "audio_shifter.cc", | 69 "audio_shifter.cc", |
| 70 "audio_shifter.h", | 70 "audio_shifter.h", |
| 71 "audio_splicer.cc", | |
| 72 "audio_splicer.h", | |
| 73 "audio_timestamp_helper.cc", | 71 "audio_timestamp_helper.cc", |
| 74 "audio_timestamp_helper.h", | 72 "audio_timestamp_helper.h", |
| 75 "bind_to_current_loop.h", | 73 "bind_to_current_loop.h", |
| 76 "bit_reader.cc", | 74 "bit_reader.cc", |
| 77 "bit_reader.h", | 75 "bit_reader.h", |
| 78 "bit_reader_core.cc", | 76 "bit_reader_core.cc", |
| 79 "bit_reader_core.h", | 77 "bit_reader_core.h", |
| 80 "bitstream_buffer.cc", | 78 "bitstream_buffer.cc", |
| 81 "bitstream_buffer.h", | 79 "bitstream_buffer.h", |
| 82 "buffering_state.h", | 80 "buffering_state.h", |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 "audio_hash_unittest.cc", | 398 "audio_hash_unittest.cc", |
| 401 "audio_latency_unittest.cc", | 399 "audio_latency_unittest.cc", |
| 402 "audio_parameters_unittest.cc", | 400 "audio_parameters_unittest.cc", |
| 403 "audio_point_unittest.cc", | 401 "audio_point_unittest.cc", |
| 404 "audio_pull_fifo_unittest.cc", | 402 "audio_pull_fifo_unittest.cc", |
| 405 "audio_push_fifo_unittest.cc", | 403 "audio_push_fifo_unittest.cc", |
| 406 "audio_renderer_mixer_input_unittest.cc", | 404 "audio_renderer_mixer_input_unittest.cc", |
| 407 "audio_renderer_mixer_unittest.cc", | 405 "audio_renderer_mixer_unittest.cc", |
| 408 "audio_sample_types_unittest.cc", | 406 "audio_sample_types_unittest.cc", |
| 409 "audio_shifter_unittest.cc", | 407 "audio_shifter_unittest.cc", |
| 410 "audio_splicer_unittest.cc", | |
| 411 "audio_timestamp_helper_unittest.cc", | 408 "audio_timestamp_helper_unittest.cc", |
| 412 "bind_to_current_loop_unittest.cc", | 409 "bind_to_current_loop_unittest.cc", |
| 413 "bit_reader_unittest.cc", | 410 "bit_reader_unittest.cc", |
| 414 "callback_holder.h", | 411 "callback_holder.h", |
| 415 "callback_holder_unittest.cc", | 412 "callback_holder_unittest.cc", |
| 416 "channel_mixer_unittest.cc", | 413 "channel_mixer_unittest.cc", |
| 417 "channel_mixing_matrix_unittest.cc", | 414 "channel_mixing_matrix_unittest.cc", |
| 418 "container_names_unittest.cc", | 415 "container_names_unittest.cc", |
| 419 "data_buffer_unittest.cc", | 416 "data_buffer_unittest.cc", |
| 420 "decoder_buffer_queue_unittest.cc", | 417 "decoder_buffer_queue_unittest.cc", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 | 603 |
| 607 fuzzer_test("media_container_names_fuzzer") { | 604 fuzzer_test("media_container_names_fuzzer") { |
| 608 sources = [ | 605 sources = [ |
| 609 "container_names_fuzzertest.cc", | 606 "container_names_fuzzertest.cc", |
| 610 ] | 607 ] |
| 611 deps = [ | 608 deps = [ |
| 612 "//base", | 609 "//base", |
| 613 "//media", | 610 "//media", |
| 614 ] | 611 ] |
| 615 } | 612 } |
| OLD | NEW |