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

Side by Side Diff: media/BUILD.gn

Issue 497203004: Mpeg2 TS parser: Es parsing using an ES byte queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add DCHECKs. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | media/formats/mp2t/es_parser.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/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 cflags += [ 352 cflags += [
353 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See 353 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See
354 # http://crbug.com/171009 354 # http://crbug.com/171009
355 ] 355 ]
356 } 356 }
357 357
358 if (proprietary_codecs) { 358 if (proprietary_codecs) {
359 sources += [ 359 sources += [
360 "formats/mp2t/es_adapter_video.cc", 360 "formats/mp2t/es_adapter_video.cc",
361 "formats/mp2t/es_adapter_video.h", 361 "formats/mp2t/es_adapter_video.h",
362 "formats/mp2t/es_parser.cc",
362 "formats/mp2t/es_parser.h", 363 "formats/mp2t/es_parser.h",
363 "formats/mp2t/es_parser_adts.cc", 364 "formats/mp2t/es_parser_adts.cc",
364 "formats/mp2t/es_parser_adts.h", 365 "formats/mp2t/es_parser_adts.h",
365 "formats/mp2t/es_parser_h264.cc", 366 "formats/mp2t/es_parser_h264.cc",
366 "formats/mp2t/es_parser_h264.h", 367 "formats/mp2t/es_parser_h264.h",
367 "formats/mp2t/mp2t_common.h", 368 "formats/mp2t/mp2t_common.h",
368 "formats/mp2t/mp2t_stream_parser.cc", 369 "formats/mp2t/mp2t_stream_parser.cc",
369 "formats/mp2t/mp2t_stream_parser.h", 370 "formats/mp2t/mp2t_stream_parser.h",
370 "formats/mp2t/ts_packet.cc", 371 "formats/mp2t/ts_packet.cc",
371 "formats/mp2t/ts_packet.h", 372 "formats/mp2t/ts_packet.h",
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 java_cpp_template("media_android_imageformat_list") { 741 java_cpp_template("media_android_imageformat_list") {
741 sources = [ 742 sources = [
742 "base/android/java/src/org/chromium/media/ImageFormat.template", 743 "base/android/java/src/org/chromium/media/ImageFormat.template",
743 ] 744 ]
744 inputs = [ 745 inputs = [
745 "video/capture/android/imageformat_list.h" 746 "video/capture/android/imageformat_list.h"
746 ] 747 ]
747 package_name = "org/chromium/media" 748 package_name = "org/chromium/media"
748 } 749 }
749 } 750 }
OLDNEW
« no previous file with comments | « no previous file | media/formats/mp2t/es_parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698