| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "filters/h264_bit_reader.cc", | 155 "filters/h264_bit_reader.cc", |
| 156 "filters/h264_bit_reader.h", | 156 "filters/h264_bit_reader.h", |
| 157 "filters/h264_parser.cc", | 157 "filters/h264_parser.cc", |
| 158 "filters/h264_parser.h", | 158 "filters/h264_parser.h", |
| 159 "filters/ivf_parser.cc", | 159 "filters/ivf_parser.cc", |
| 160 "filters/ivf_parser.h", | 160 "filters/ivf_parser.h", |
| 161 "filters/jpeg_parser.cc", | 161 "filters/jpeg_parser.cc", |
| 162 "filters/jpeg_parser.h", | 162 "filters/jpeg_parser.h", |
| 163 "filters/memory_data_source.cc", | 163 "filters/memory_data_source.cc", |
| 164 "filters/memory_data_source.h", | 164 "filters/memory_data_source.h", |
| 165 "filters/opus_audio_decoder.cc", | |
| 166 "filters/opus_audio_decoder.h", | |
| 167 "filters/opus_constants.cc", | 165 "filters/opus_constants.cc", |
| 168 "filters/opus_constants.h", | 166 "filters/opus_constants.h", |
| 169 "filters/pipeline_controller.cc", | 167 "filters/pipeline_controller.cc", |
| 170 "filters/pipeline_controller.h", | 168 "filters/pipeline_controller.h", |
| 171 "filters/source_buffer_range.cc", | 169 "filters/source_buffer_range.cc", |
| 172 "filters/source_buffer_range.h", | 170 "filters/source_buffer_range.h", |
| 173 "filters/source_buffer_state.cc", | 171 "filters/source_buffer_state.cc", |
| 174 "filters/source_buffer_state.h", | 172 "filters/source_buffer_state.h", |
| 175 "filters/source_buffer_stream.cc", | 173 "filters/source_buffer_stream.cc", |
| 176 "filters/source_buffer_stream.h", | 174 "filters/source_buffer_stream.h", |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 914 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 917 sources = [ | 915 sources = [ |
| 918 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 916 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 919 ] | 917 ] |
| 920 deps = [ | 918 deps = [ |
| 921 ":media", | 919 ":media", |
| 922 "//base", | 920 "//base", |
| 923 ] | 921 ] |
| 924 } | 922 } |
| 925 } | 923 } |
| OLD | NEW |