| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "cdm_promise_adapter.cc", | 106 "cdm_promise_adapter.cc", |
| 107 "cdm_promise_adapter.h", | 107 "cdm_promise_adapter.h", |
| 108 "cdm_session_tracker.cc", | 108 "cdm_session_tracker.cc", |
| 109 "cdm_session_tracker.h", | 109 "cdm_session_tracker.h", |
| 110 "channel_mixer.cc", | 110 "channel_mixer.cc", |
| 111 "channel_mixer.h", | 111 "channel_mixer.h", |
| 112 "channel_mixing_matrix.cc", | 112 "channel_mixing_matrix.cc", |
| 113 "channel_mixing_matrix.h", | 113 "channel_mixing_matrix.h", |
| 114 "container_names.cc", | 114 "container_names.cc", |
| 115 "container_names.h", | 115 "container_names.h", |
| 116 "content_decryption_module.cc", |
| 117 "content_decryption_module.h", |
| 116 "data_buffer.cc", | 118 "data_buffer.cc", |
| 117 "data_buffer.h", | 119 "data_buffer.h", |
| 118 "data_source.cc", | 120 "data_source.cc", |
| 119 "data_source.h", | 121 "data_source.h", |
| 120 "decode_status.cc", | 122 "decode_status.cc", |
| 121 "decode_status.h", | 123 "decode_status.h", |
| 122 "decoder_buffer.cc", | 124 "decoder_buffer.cc", |
| 123 "decoder_buffer.h", | 125 "decoder_buffer.h", |
| 124 "decoder_buffer_queue.cc", | 126 "decoder_buffer_queue.cc", |
| 125 "decoder_buffer_queue.h", | 127 "decoder_buffer_queue.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 150 "key_systems.cc", | 152 "key_systems.cc", |
| 151 "key_systems.h", | 153 "key_systems.h", |
| 152 "loopback_audio_converter.cc", | 154 "loopback_audio_converter.cc", |
| 153 "loopback_audio_converter.h", | 155 "loopback_audio_converter.h", |
| 154 "media.cc", | 156 "media.cc", |
| 155 "media.h", | 157 "media.h", |
| 156 "media_client.cc", | 158 "media_client.cc", |
| 157 "media_client.h", | 159 "media_client.h", |
| 158 "media_content_type.cc", | 160 "media_content_type.cc", |
| 159 "media_content_type.h", | 161 "media_content_type.h", |
| 160 "media_keys.cc", | |
| 161 "media_keys.h", | |
| 162 "media_log.cc", | 162 "media_log.cc", |
| 163 "media_log.h", | 163 "media_log.h", |
| 164 "media_log_event.h", | 164 "media_log_event.h", |
| 165 "media_observer.cc", | 165 "media_observer.cc", |
| 166 "media_observer.h", | 166 "media_observer.h", |
| 167 "media_permission.cc", | 167 "media_permission.cc", |
| 168 "media_permission.h", | 168 "media_permission.h", |
| 169 "media_resources.cc", | 169 "media_resources.cc", |
| 170 "media_resources.h", | 170 "media_resources.h", |
| 171 "media_switches.cc", | 171 "media_switches.cc", |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 616 | 616 |
| 617 fuzzer_test("media_container_names_fuzzer") { | 617 fuzzer_test("media_container_names_fuzzer") { |
| 618 sources = [ | 618 sources = [ |
| 619 "container_names_fuzzertest.cc", | 619 "container_names_fuzzertest.cc", |
| 620 ] | 620 ] |
| 621 deps = [ | 621 deps = [ |
| 622 "//base", | 622 "//base", |
| 623 "//media", | 623 "//media", |
| 624 ] | 624 ] |
| 625 } | 625 } |
| OLD | NEW |