| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 if (proprietary_codecs) { | 357 if (proprietary_codecs) { |
| 358 sources += [ | 358 sources += [ |
| 359 "formats/mp2t/es_adapter_video.cc", | 359 "formats/mp2t/es_adapter_video.cc", |
| 360 "formats/mp2t/es_adapter_video.h", | 360 "formats/mp2t/es_adapter_video.h", |
| 361 "formats/mp2t/es_parser.cc", | 361 "formats/mp2t/es_parser.cc", |
| 362 "formats/mp2t/es_parser.h", | 362 "formats/mp2t/es_parser.h", |
| 363 "formats/mp2t/es_parser_adts.cc", | 363 "formats/mp2t/es_parser_adts.cc", |
| 364 "formats/mp2t/es_parser_adts.h", | 364 "formats/mp2t/es_parser_adts.h", |
| 365 "formats/mp2t/es_parser_h264.cc", | 365 "formats/mp2t/es_parser_h264.cc", |
| 366 "formats/mp2t/es_parser_h264.h", | 366 "formats/mp2t/es_parser_h264.h", |
| 367 "formats/mp2t/es_parser_mpeg1audio.cc", |
| 368 "formats/mp2t/es_parser_mpeg1audio.h", |
| 367 "formats/mp2t/mp2t_common.h", | 369 "formats/mp2t/mp2t_common.h", |
| 368 "formats/mp2t/mp2t_stream_parser.cc", | 370 "formats/mp2t/mp2t_stream_parser.cc", |
| 369 "formats/mp2t/mp2t_stream_parser.h", | 371 "formats/mp2t/mp2t_stream_parser.h", |
| 370 "formats/mp2t/ts_packet.cc", | 372 "formats/mp2t/ts_packet.cc", |
| 371 "formats/mp2t/ts_packet.h", | 373 "formats/mp2t/ts_packet.h", |
| 372 "formats/mp2t/ts_section.h", | 374 "formats/mp2t/ts_section.h", |
| 373 "formats/mp2t/ts_section_pat.cc", | 375 "formats/mp2t/ts_section_pat.cc", |
| 374 "formats/mp2t/ts_section_pat.h", | 376 "formats/mp2t/ts_section_pat.h", |
| 375 "formats/mp2t/ts_section_pes.cc", | 377 "formats/mp2t/ts_section_pes.cc", |
| 376 "formats/mp2t/ts_section_pes.h", | 378 "formats/mp2t/ts_section_pes.h", |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 java_cpp_template("media_android_imageformat_list") { | 743 java_cpp_template("media_android_imageformat_list") { |
| 742 sources = [ | 744 sources = [ |
| 743 "base/android/java/src/org/chromium/media/ImageFormat.template", | 745 "base/android/java/src/org/chromium/media/ImageFormat.template", |
| 744 ] | 746 ] |
| 745 inputs = [ | 747 inputs = [ |
| 746 "video/capture/android/imageformat_list.h" | 748 "video/capture/android/imageformat_list.h" |
| 747 ] | 749 ] |
| 748 package_name = "org/chromium/media" | 750 package_name = "org/chromium/media" |
| 749 } | 751 } |
| 750 } | 752 } |
| OLD | NEW |