| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "channel_mixing_matrix.cc", | 113 "channel_mixing_matrix.cc", |
| 114 "channel_mixing_matrix.h", | 114 "channel_mixing_matrix.h", |
| 115 "container_names.cc", | 115 "container_names.cc", |
| 116 "container_names.h", | 116 "container_names.h", |
| 117 "content_decryption_module.cc", | 117 "content_decryption_module.cc", |
| 118 "content_decryption_module.h", | 118 "content_decryption_module.h", |
| 119 "data_buffer.cc", | 119 "data_buffer.cc", |
| 120 "data_buffer.h", | 120 "data_buffer.h", |
| 121 "data_source.cc", | 121 "data_source.cc", |
| 122 "data_source.h", | 122 "data_source.h", |
| 123 "decode_capabilities.cc", |
| 124 "decode_capabilities.h", |
| 123 "decode_status.cc", | 125 "decode_status.cc", |
| 124 "decode_status.h", | 126 "decode_status.h", |
| 125 "decoder_buffer.cc", | 127 "decoder_buffer.cc", |
| 126 "decoder_buffer.h", | 128 "decoder_buffer.h", |
| 127 "decoder_buffer_queue.cc", | 129 "decoder_buffer_queue.cc", |
| 128 "decoder_buffer_queue.h", | 130 "decoder_buffer_queue.h", |
| 129 "decoder_factory.cc", | 131 "decoder_factory.cc", |
| 130 "decoder_factory.h", | 132 "decoder_factory.h", |
| 131 "decrypt_config.cc", | 133 "decrypt_config.cc", |
| 132 "decrypt_config.h", | 134 "decrypt_config.h", |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 430 "audio_shifter_unittest.cc", | 432 "audio_shifter_unittest.cc", |
| 431 "audio_timestamp_helper_unittest.cc", | 433 "audio_timestamp_helper_unittest.cc", |
| 432 "bind_to_current_loop_unittest.cc", | 434 "bind_to_current_loop_unittest.cc", |
| 433 "bit_reader_unittest.cc", | 435 "bit_reader_unittest.cc", |
| 434 "callback_holder.h", | 436 "callback_holder.h", |
| 435 "callback_holder_unittest.cc", | 437 "callback_holder_unittest.cc", |
| 436 "channel_mixer_unittest.cc", | 438 "channel_mixer_unittest.cc", |
| 437 "channel_mixing_matrix_unittest.cc", | 439 "channel_mixing_matrix_unittest.cc", |
| 438 "container_names_unittest.cc", | 440 "container_names_unittest.cc", |
| 439 "data_buffer_unittest.cc", | 441 "data_buffer_unittest.cc", |
| 442 "decode_capabilities_unittest.cc", |
| 440 "decoder_buffer_queue_unittest.cc", | 443 "decoder_buffer_queue_unittest.cc", |
| 441 "decoder_buffer_unittest.cc", | 444 "decoder_buffer_unittest.cc", |
| 442 "djb2_unittest.cc", | 445 "djb2_unittest.cc", |
| 443 "fake_demuxer_stream_unittest.cc", | 446 "fake_demuxer_stream_unittest.cc", |
| 444 "feedback_signal_accumulator_unittest.cc", | 447 "feedback_signal_accumulator_unittest.cc", |
| 445 "gmock_callback_support_unittest.cc", | 448 "gmock_callback_support_unittest.cc", |
| 446 "key_systems_unittest.cc", | 449 "key_systems_unittest.cc", |
| 447 "media_url_demuxer_unittest.cc", | 450 "media_url_demuxer_unittest.cc", |
| 448 "mime_util_unittest.cc", | 451 "mime_util_unittest.cc", |
| 449 "moving_average_unittest.cc", | 452 "moving_average_unittest.cc", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 | 561 |
| 559 fuzzer_test("media_container_names_fuzzer") { | 562 fuzzer_test("media_container_names_fuzzer") { |
| 560 sources = [ | 563 sources = [ |
| 561 "container_names_fuzzertest.cc", | 564 "container_names_fuzzertest.cc", |
| 562 ] | 565 ] |
| 563 deps = [ | 566 deps = [ |
| 564 "//base", | 567 "//base", |
| 565 "//media", | 568 "//media", |
| 566 ] | 569 ] |
| 567 } | 570 } |
| OLD | NEW |