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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 "renderers/video_renderer_impl.cc", | 197 "renderers/video_renderer_impl.cc", |
198 "renderers/video_renderer_impl.h", | 198 "renderers/video_renderer_impl.h", |
199 "video/fake_video_encode_accelerator.cc", | 199 "video/fake_video_encode_accelerator.cc", |
200 "video/fake_video_encode_accelerator.h", | 200 "video/fake_video_encode_accelerator.h", |
201 "video/gpu_memory_buffer_video_frame_copier.cc", | 201 "video/gpu_memory_buffer_video_frame_copier.cc", |
202 "video/gpu_memory_buffer_video_frame_copier.h", | 202 "video/gpu_memory_buffer_video_frame_copier.h", |
203 "video/gpu_memory_buffer_video_frame_pool.cc", | 203 "video/gpu_memory_buffer_video_frame_pool.cc", |
204 "video/gpu_memory_buffer_video_frame_pool.h", | 204 "video/gpu_memory_buffer_video_frame_pool.h", |
205 "video/h264_poc.cc", | 205 "video/h264_poc.cc", |
206 "video/h264_poc.h", | 206 "video/h264_poc.h", |
| 207 "video/hybrid_video_frame_pool.cc", |
| 208 "video/hybrid_video_frame_pool.h", |
207 "video/jpeg_decode_accelerator.cc", | 209 "video/jpeg_decode_accelerator.cc", |
208 "video/jpeg_decode_accelerator.h", | 210 "video/jpeg_decode_accelerator.h", |
209 "video/picture.cc", | 211 "video/picture.cc", |
210 "video/picture.h", | 212 "video/picture.h", |
211 "video/video_decode_accelerator.cc", | 213 "video/video_decode_accelerator.cc", |
212 "video/video_decode_accelerator.h", | 214 "video/video_decode_accelerator.h", |
213 "video/video_encode_accelerator.cc", | 215 "video/video_encode_accelerator.cc", |
214 "video/video_encode_accelerator.h", | 216 "video/video_encode_accelerator.h", |
215 ] | 217 ] |
216 | 218 |
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
827 fuzzer_test("media_vp9_parser_fuzzer") { | 829 fuzzer_test("media_vp9_parser_fuzzer") { |
828 sources = [ | 830 sources = [ |
829 "filters/vp9_parser_fuzzertest.cc", | 831 "filters/vp9_parser_fuzzertest.cc", |
830 ] | 832 ] |
831 deps = [ | 833 deps = [ |
832 ":media", | 834 ":media", |
833 "//base", | 835 "//base", |
834 ] | 836 ] |
835 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 837 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" |
836 } | 838 } |
OLD | NEW |