| 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/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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |