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/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 "simd/convert_yuv_to_rgb.h", | 161 "simd/convert_yuv_to_rgb.h", |
162 "simd/convert_yuv_to_rgb_c.cc", | 162 "simd/convert_yuv_to_rgb_c.cc", |
163 "simd/filter_yuv.h", | 163 "simd/filter_yuv.h", |
164 "simd/filter_yuv_c.cc", | 164 "simd/filter_yuv_c.cc", |
165 "sinc_resampler.cc", | 165 "sinc_resampler.cc", |
166 "sinc_resampler.h", | 166 "sinc_resampler.h", |
167 "stream_parser.cc", | 167 "stream_parser.cc", |
168 "stream_parser.h", | 168 "stream_parser.h", |
169 "stream_parser_buffer.cc", | 169 "stream_parser_buffer.cc", |
170 "stream_parser_buffer.h", | 170 "stream_parser_buffer.h", |
| 171 "surface_manager.h", |
171 "text_cue.cc", | 172 "text_cue.cc", |
172 "text_cue.h", | 173 "text_cue.h", |
173 "text_ranges.cc", | 174 "text_ranges.cc", |
174 "text_ranges.h", | 175 "text_ranges.h", |
175 "text_renderer.cc", | 176 "text_renderer.cc", |
176 "text_renderer.h", | 177 "text_renderer.h", |
177 "text_track.h", | 178 "text_track.h", |
178 "text_track_config.cc", | 179 "text_track_config.cc", |
179 "text_track_config.h", | 180 "text_track_config.h", |
180 "time_delta_interpolator.cc", | 181 "time_delta_interpolator.cc", |
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 } | 550 } |
550 | 551 |
551 fuzzer_test("media_container_names_fuzzer") { | 552 fuzzer_test("media_container_names_fuzzer") { |
552 sources = [ | 553 sources = [ |
553 "container_names_fuzzertest.cc", | 554 "container_names_fuzzertest.cc", |
554 ] | 555 ] |
555 deps = [ | 556 deps = [ |
556 "//media", | 557 "//media", |
557 ] | 558 ] |
558 } | 559 } |
OLD | NEW |