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

Side by Side Diff: media/BUILD.gn

Issue 2378443002: Fix MSE ADTS parsing on Android. (Closed)
Patch Set: Address comments. Created 4 years, 2 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 | « no previous file | media/filters/audio_decoder_unittest.cc » ('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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 "formats/mp4/es_descriptor.cc", 413 "formats/mp4/es_descriptor.cc",
414 "formats/mp4/es_descriptor.h", 414 "formats/mp4/es_descriptor.h",
415 "formats/mp4/mp4_stream_parser.cc", 415 "formats/mp4/mp4_stream_parser.cc",
416 "formats/mp4/mp4_stream_parser.h", 416 "formats/mp4/mp4_stream_parser.h",
417 "formats/mp4/sample_to_group_iterator.cc", 417 "formats/mp4/sample_to_group_iterator.cc",
418 "formats/mp4/sample_to_group_iterator.h", 418 "formats/mp4/sample_to_group_iterator.h",
419 "formats/mp4/track_run_iterator.cc", 419 "formats/mp4/track_run_iterator.cc",
420 "formats/mp4/track_run_iterator.h", 420 "formats/mp4/track_run_iterator.h",
421 "formats/mpeg/adts_constants.cc", 421 "formats/mpeg/adts_constants.cc",
422 "formats/mpeg/adts_constants.h", 422 "formats/mpeg/adts_constants.h",
423 "formats/mpeg/adts_header_parser.cc",
424 "formats/mpeg/adts_header_parser.h",
425 "formats/mpeg/adts_stream_parser.cc", 423 "formats/mpeg/adts_stream_parser.cc",
426 "formats/mpeg/adts_stream_parser.h", 424 "formats/mpeg/adts_stream_parser.h",
427 "formats/mpeg/mpeg1_audio_stream_parser.cc", 425 "formats/mpeg/mpeg1_audio_stream_parser.cc",
428 "formats/mpeg/mpeg1_audio_stream_parser.h", 426 "formats/mpeg/mpeg1_audio_stream_parser.h",
429 "formats/mpeg/mpeg_audio_stream_parser_base.cc", 427 "formats/mpeg/mpeg_audio_stream_parser_base.cc",
430 "formats/mpeg/mpeg_audio_stream_parser_base.h", 428 "formats/mpeg/mpeg_audio_stream_parser_base.h",
431 ] 429 ]
432 if (enable_mse_mpeg2ts_stream_parser) { 430 if (enable_mse_mpeg2ts_stream_parser) {
433 sources += [ 431 sources += [
434 "formats/mp2t/es_adapter_video.cc", 432 "formats/mp2t/es_adapter_video.cc",
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 fuzzer_test("media_webm_muxer_fuzzer") { 901 fuzzer_test("media_webm_muxer_fuzzer") {
904 sources = [ 902 sources = [
905 "muxers/webm_muxer_fuzzertest.cc", 903 "muxers/webm_muxer_fuzzertest.cc",
906 ] 904 ]
907 deps = [ 905 deps = [
908 ":media", 906 ":media",
909 "//base", 907 "//base",
910 "//third_party/libwebm", 908 "//third_party/libwebm",
911 ] 909 ]
912 } 910 }
OLDNEW
« no previous file with comments | « no previous file | media/filters/audio_decoder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698