| 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/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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "filters/h264_bit_reader.cc", | 150 "filters/h264_bit_reader.cc", |
| 151 "filters/h264_bit_reader.h", | 151 "filters/h264_bit_reader.h", |
| 152 "filters/h264_parser.cc", | 152 "filters/h264_parser.cc", |
| 153 "filters/h264_parser.h", | 153 "filters/h264_parser.h", |
| 154 "filters/ivf_parser.cc", | 154 "filters/ivf_parser.cc", |
| 155 "filters/ivf_parser.h", | 155 "filters/ivf_parser.h", |
| 156 "filters/jpeg_parser.cc", | 156 "filters/jpeg_parser.cc", |
| 157 "filters/jpeg_parser.h", | 157 "filters/jpeg_parser.h", |
| 158 "filters/media_source_state.cc", | 158 "filters/media_source_state.cc", |
| 159 "filters/media_source_state.h", | 159 "filters/media_source_state.h", |
| 160 "filters/memory_data_source.cc", |
| 161 "filters/memory_data_source.h", |
| 160 "filters/opus_audio_decoder.cc", | 162 "filters/opus_audio_decoder.cc", |
| 161 "filters/opus_audio_decoder.h", | 163 "filters/opus_audio_decoder.h", |
| 162 "filters/opus_constants.cc", | 164 "filters/opus_constants.cc", |
| 163 "filters/opus_constants.h", | 165 "filters/opus_constants.h", |
| 164 "filters/source_buffer_range.cc", | 166 "filters/source_buffer_range.cc", |
| 165 "filters/source_buffer_range.h", | 167 "filters/source_buffer_range.h", |
| 166 "filters/source_buffer_stream.cc", | 168 "filters/source_buffer_stream.cc", |
| 167 "filters/source_buffer_stream.h", | 169 "filters/source_buffer_stream.h", |
| 168 "filters/stream_parser_factory.cc", | 170 "filters/stream_parser_factory.cc", |
| 169 "filters/stream_parser_factory.h", | 171 "filters/stream_parser_factory.h", |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 if (proprietary_codecs) { | 834 if (proprietary_codecs) { |
| 833 fuzzer_test("media_cenc_utils_fuzzer") { | 835 fuzzer_test("media_cenc_utils_fuzzer") { |
| 834 sources = [ | 836 sources = [ |
| 835 "cdm/cenc_utils_fuzzertest.cc", | 837 "cdm/cenc_utils_fuzzertest.cc", |
| 836 ] | 838 ] |
| 837 deps = [ | 839 deps = [ |
| 838 ":media", | 840 ":media", |
| 839 ] | 841 ] |
| 840 } | 842 } |
| 841 } | 843 } |
| OLD | NEW |