Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: media/base/BUILD.gn

Issue 2491043003: MediaResource refactoring to support multiple streams (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
150 "key_system_properties.cc", 148 "key_system_properties.cc",
151 "key_system_properties.h", 149 "key_system_properties.h",
152 "key_systems.cc", 150 "key_systems.cc",
153 "key_systems.h", 151 "key_systems.h",
154 "loopback_audio_converter.cc", 152 "loopback_audio_converter.cc",
155 "loopback_audio_converter.h", 153 "loopback_audio_converter.h",
156 "media.cc", 154 "media.cc",
157 "media.h", 155 "media.h",
158 "media_client.cc", 156 "media_client.cc",
159 "media_client.h", 157 "media_client.h",
160 "media_content_type.cc", 158 "media_content_type.cc",
161 "media_content_type.h", 159 "media_content_type.h",
162 "media_log.cc", 160 "media_log.cc",
163 "media_log.h", 161 "media_log.h",
164 "media_log_event.h", 162 "media_log_event.h",
165 "media_observer.cc", 163 "media_observer.cc",
166 "media_observer.h", 164 "media_observer.h",
167 "media_permission.cc", 165 "media_permission.cc",
168 "media_permission.h", 166 "media_permission.h",
167 "media_resource.cc",
168 "media_resource.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",
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",
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698