| 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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "video_decoder_config.cc", | 251 "video_decoder_config.cc", |
| 252 "video_decoder_config.h", | 252 "video_decoder_config.h", |
| 253 "video_frame.cc", | 253 "video_frame.cc", |
| 254 "video_frame.h", | 254 "video_frame.h", |
| 255 "video_frame_metadata.cc", | 255 "video_frame_metadata.cc", |
| 256 "video_frame_metadata.h", | 256 "video_frame_metadata.h", |
| 257 "video_frame_pool.cc", | 257 "video_frame_pool.cc", |
| 258 "video_frame_pool.h", | 258 "video_frame_pool.h", |
| 259 "video_frame_provider.cc", | 259 "video_frame_provider.cc", |
| 260 "video_frame_provider.h", | 260 "video_frame_provider.h", |
| 261 "video_frame_provider_factory.cc", |
| 262 "video_frame_provider_factory.h", |
| 261 "video_renderer.cc", | 263 "video_renderer.cc", |
| 262 "video_renderer.h", | 264 "video_renderer.h", |
| 263 "video_rotation.h", | 265 "video_rotation.h", |
| 264 "video_types.cc", | 266 "video_types.cc", |
| 265 "video_types.h", | 267 "video_types.h", |
| 266 "video_util.cc", | 268 "video_util.cc", |
| 267 "video_util.h", | 269 "video_util.h", |
| 268 "wall_clock_time_source.cc", | 270 "wall_clock_time_source.cc", |
| 269 "wall_clock_time_source.h", | 271 "wall_clock_time_source.h", |
| 270 "yuv_convert.cc", | 272 "yuv_convert.cc", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 | 623 |
| 622 fuzzer_test("media_container_names_fuzzer") { | 624 fuzzer_test("media_container_names_fuzzer") { |
| 623 sources = [ | 625 sources = [ |
| 624 "container_names_fuzzertest.cc", | 626 "container_names_fuzzertest.cc", |
| 625 ] | 627 ] |
| 626 deps = [ | 628 deps = [ |
| 627 "//base", | 629 "//base", |
| 628 "//media", | 630 "//media", |
| 629 ] | 631 ] |
| 630 } | 632 } |
| OLD | NEW |