| 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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] | 505 sources += [ "filters/h264_bitstream_buffer_unittest.cc" ] |
| 506 } | 506 } |
| 507 | 507 |
| 508 if (proprietary_codecs) { | 508 if (proprietary_codecs) { |
| 509 sources += [ | 509 sources += [ |
| 510 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", | 510 "filters/ffmpeg_h264_to_annex_b_bitstream_converter_unittest.cc", |
| 511 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", | 511 "filters/h264_to_annex_b_bitstream_converter_unittest.cc", |
| 512 "formats/common/stream_parser_test_base.cc", | 512 "formats/common/stream_parser_test_base.cc", |
| 513 "formats/common/stream_parser_test_base.h", | 513 "formats/common/stream_parser_test_base.h", |
| 514 "formats/mp2t/es_adapter_video_unittest.cc", | 514 "formats/mp2t/es_adapter_video_unittest.cc", |
| 515 "formats/mp2t/es_parser_adts_unittest.cc", |
| 515 "formats/mp2t/es_parser_h264_unittest.cc", | 516 "formats/mp2t/es_parser_h264_unittest.cc", |
| 517 "formats/mp2t/es_parser_test_base.cc", |
| 518 "formats/mp2t/es_parser_test_base.h", |
| 516 "formats/mp2t/mp2t_stream_parser_unittest.cc", | 519 "formats/mp2t/mp2t_stream_parser_unittest.cc", |
| 517 "formats/mp4/aac_unittest.cc", | 520 "formats/mp4/aac_unittest.cc", |
| 518 "formats/mp4/avc_unittest.cc", | 521 "formats/mp4/avc_unittest.cc", |
| 519 "formats/mp4/box_reader_unittest.cc", | 522 "formats/mp4/box_reader_unittest.cc", |
| 520 "formats/mp4/es_descriptor_unittest.cc", | 523 "formats/mp4/es_descriptor_unittest.cc", |
| 521 "formats/mp4/mp4_stream_parser_unittest.cc", | 524 "formats/mp4/mp4_stream_parser_unittest.cc", |
| 522 "formats/mp4/sample_to_group_iterator_unittest.cc", | 525 "formats/mp4/sample_to_group_iterator_unittest.cc", |
| 523 "formats/mp4/track_run_iterator_unittest.cc", | 526 "formats/mp4/track_run_iterator_unittest.cc", |
| 524 "formats/mpeg/adts_stream_parser_unittest.cc", | 527 "formats/mpeg/adts_stream_parser_unittest.cc", |
| 525 "formats/mpeg/mp3_stream_parser_unittest.cc", | 528 "formats/mpeg/mp3_stream_parser_unittest.cc", |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 java_cpp_template("media_android_imageformat_list") { | 743 java_cpp_template("media_android_imageformat_list") { |
| 741 sources = [ | 744 sources = [ |
| 742 "base/android/java/src/org/chromium/media/ImageFormat.template", | 745 "base/android/java/src/org/chromium/media/ImageFormat.template", |
| 743 ] | 746 ] |
| 744 inputs = [ | 747 inputs = [ |
| 745 "video/capture/android/imageformat_list.h" | 748 "video/capture/android/imageformat_list.h" |
| 746 ] | 749 ] |
| 747 package_name = "org/chromium/media" | 750 package_name = "org/chromium/media" |
| 748 } | 751 } |
| 749 } | 752 } |
| OLD | NEW |