| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "channel_mixer.cc", | 87 "channel_mixer.cc", |
| 88 "channel_mixer.h", | 88 "channel_mixer.h", |
| 89 "channel_mixing_matrix.cc", | 89 "channel_mixing_matrix.cc", |
| 90 "channel_mixing_matrix.h", | 90 "channel_mixing_matrix.h", |
| 91 "container_names.cc", | 91 "container_names.cc", |
| 92 "container_names.h", | 92 "container_names.h", |
| 93 "data_buffer.cc", | 93 "data_buffer.cc", |
| 94 "data_buffer.h", | 94 "data_buffer.h", |
| 95 "data_source.cc", | 95 "data_source.cc", |
| 96 "data_source.h", | 96 "data_source.h", |
| 97 "decode_status.cc", |
| 98 "decode_status.h", |
| 97 "decoder_buffer.cc", | 99 "decoder_buffer.cc", |
| 98 "decoder_buffer.h", | 100 "decoder_buffer.h", |
| 99 "decoder_buffer_queue.cc", | 101 "decoder_buffer_queue.cc", |
| 100 "decoder_buffer_queue.h", | 102 "decoder_buffer_queue.h", |
| 101 "decoder_factory.cc", | 103 "decoder_factory.cc", |
| 102 "decoder_factory.h", | 104 "decoder_factory.h", |
| 103 "decrypt_config.cc", | 105 "decrypt_config.cc", |
| 104 "decrypt_config.h", | 106 "decrypt_config.h", |
| 105 "decryptor.cc", | 107 "decryptor.cc", |
| 106 "decryptor.h", | 108 "decryptor.h", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 575 | 577 |
| 576 fuzzer_test("media_container_names_fuzzer") { | 578 fuzzer_test("media_container_names_fuzzer") { |
| 577 sources = [ | 579 sources = [ |
| 578 "container_names_fuzzertest.cc", | 580 "container_names_fuzzertest.cc", |
| 579 ] | 581 ] |
| 580 deps = [ | 582 deps = [ |
| 581 "//base", | 583 "//base", |
| 582 "//media", | 584 "//media", |
| 583 ] | 585 ] |
| 584 } | 586 } |
| OLD | NEW |