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

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

Issue 2643743002: Mojify demuxers and allow running {Chunk/FFmpeg}Demuxer in a Utility Process (Closed)
Patch Set: Rebase and make sure to unbind mojom::DemuxerPtr on the bound thread during termination 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
« no previous file with comments | « media/BUILD.gn ('k') | media/base/demuxer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "decoder_buffer_queue.cc", 126 "decoder_buffer_queue.cc",
127 "decoder_buffer_queue.h", 127 "decoder_buffer_queue.h",
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_factory.cc",
137 "demuxer_factory.h",
136 "demuxer_stream.cc", 138 "demuxer_stream.cc",
137 "demuxer_stream.h", 139 "demuxer_stream.h",
138 "djb2.cc", 140 "djb2.cc",
139 "djb2.h", 141 "djb2.h",
140 "eme_constants.h", 142 "eme_constants.h",
141 "encryption_scheme.cc", 143 "encryption_scheme.cc",
142 "encryption_scheme.h", 144 "encryption_scheme.h",
143 "feedback_signal_accumulator.h", 145 "feedback_signal_accumulator.h",
144 "hdr_metadata.cc", 146 "hdr_metadata.cc",
145 "hdr_metadata.h", 147 "hdr_metadata.h",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 "silent_sink_suspender.cc", 218 "silent_sink_suspender.cc",
217 "silent_sink_suspender.h", 219 "silent_sink_suspender.h",
218 "simd/convert_rgb_to_yuv.h", 220 "simd/convert_rgb_to_yuv.h",
219 "simd/convert_rgb_to_yuv_c.cc", 221 "simd/convert_rgb_to_yuv_c.cc",
220 "simd/convert_yuv_to_rgb.h", 222 "simd/convert_yuv_to_rgb.h",
221 "simd/convert_yuv_to_rgb_c.cc", 223 "simd/convert_yuv_to_rgb_c.cc",
222 "simd/filter_yuv.h", 224 "simd/filter_yuv.h",
223 "simd/filter_yuv_c.cc", 225 "simd/filter_yuv_c.cc",
224 "sinc_resampler.cc", 226 "sinc_resampler.cc",
225 "sinc_resampler.h", 227 "sinc_resampler.h",
228 "source_buffer.cc",
229 "source_buffer.h",
226 "stream_parser.cc", 230 "stream_parser.cc",
227 "stream_parser.h", 231 "stream_parser.h",
228 "stream_parser_buffer.cc", 232 "stream_parser_buffer.cc",
229 "stream_parser_buffer.h", 233 "stream_parser_buffer.h",
230 "subsample_entry.h", 234 "subsample_entry.h",
231 "surface_manager.h", 235 "surface_manager.h",
232 "text_cue.cc", 236 "text_cue.cc",
233 "text_cue.h", 237 "text_cue.h",
234 "text_ranges.cc", 238 "text_ranges.cc",
235 "text_ranges.h", 239 "text_ranges.h",
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 627
624 fuzzer_test("media_container_names_fuzzer") { 628 fuzzer_test("media_container_names_fuzzer") {
625 sources = [ 629 sources = [
626 "container_names_fuzzertest.cc", 630 "container_names_fuzzertest.cc",
627 ] 631 ]
628 deps = [ 632 deps = [
629 "//base", 633 "//base",
630 "//media", 634 "//media",
631 ] 635 ]
632 } 636 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/base/demuxer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698