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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "decoder_factory.cc", | 128 "decoder_factory.cc", |
129 "decoder_factory.h", | 129 "decoder_factory.h", |
130 "decrypt_config.cc", | 130 "decrypt_config.cc", |
131 "decrypt_config.h", | 131 "decrypt_config.h", |
132 "decryptor.cc", | 132 "decryptor.cc", |
133 "decryptor.h", | 133 "decryptor.h", |
134 "demuxer.cc", | 134 "demuxer.cc", |
135 "demuxer.h", | 135 "demuxer.h", |
136 "demuxer_stream.cc", | 136 "demuxer_stream.cc", |
137 "demuxer_stream.h", | 137 "demuxer_stream.h", |
138 "demuxer_stream_provider.cc", | |
139 "demuxer_stream_provider.h", | |
140 "djb2.cc", | 138 "djb2.cc", |
141 "djb2.h", | 139 "djb2.h", |
142 "eme_constants.h", | 140 "eme_constants.h", |
143 "encryption_scheme.cc", | 141 "encryption_scheme.cc", |
144 "encryption_scheme.h", | 142 "encryption_scheme.h", |
145 "feedback_signal_accumulator.h", | 143 "feedback_signal_accumulator.h", |
146 "hdr_metadata.cc", | 144 "hdr_metadata.cc", |
147 "hdr_metadata.h", | 145 "hdr_metadata.h", |
148 "key_system_names.cc", | 146 "key_system_names.cc", |
149 "key_system_names.h", | 147 "key_system_names.h", |
(...skipping 11 matching lines...) Expand all Loading... |
161 "media_client.h", | 159 "media_client.h", |
162 "media_content_type.cc", | 160 "media_content_type.cc", |
163 "media_content_type.h", | 161 "media_content_type.h", |
164 "media_log.cc", | 162 "media_log.cc", |
165 "media_log.h", | 163 "media_log.h", |
166 "media_log_event.h", | 164 "media_log_event.h", |
167 "media_observer.cc", | 165 "media_observer.cc", |
168 "media_observer.h", | 166 "media_observer.h", |
169 "media_permission.cc", | 167 "media_permission.cc", |
170 "media_permission.h", | 168 "media_permission.h", |
| 169 "media_resource.cc", |
| 170 "media_resource.h", |
171 "media_switches.cc", | 171 "media_switches.cc", |
172 "media_switches.h", | 172 "media_switches.h", |
173 "media_track.cc", | 173 "media_track.cc", |
174 "media_track.h", | 174 "media_track.h", |
175 "media_tracks.cc", | 175 "media_tracks.cc", |
176 "media_tracks.h", | 176 "media_tracks.h", |
177 "media_url_demuxer.cc", | 177 "media_url_demuxer.cc", |
178 "media_url_demuxer.h", | 178 "media_url_demuxer.h", |
179 "media_url_params.h", | 179 "media_url_params.h", |
180 "media_util.cc", | 180 "media_util.cc", |
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
619 | 619 |
620 fuzzer_test("media_container_names_fuzzer") { | 620 fuzzer_test("media_container_names_fuzzer") { |
621 sources = [ | 621 sources = [ |
622 "container_names_fuzzertest.cc", | 622 "container_names_fuzzertest.cc", |
623 ] | 623 ] |
624 deps = [ | 624 deps = [ |
625 "//base", | 625 "//base", |
626 "//media", | 626 "//media", |
627 ] | 627 ] |
628 } | 628 } |
OLD | NEW |