| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "time_source.h", | 243 "time_source.h", |
| 244 "timestamp_constants.h", | 244 "timestamp_constants.h", |
| 245 "user_input_monitor.cc", | 245 "user_input_monitor.cc", |
| 246 "user_input_monitor.h", | 246 "user_input_monitor.h", |
| 247 "video_codecs.cc", | 247 "video_codecs.cc", |
| 248 "video_codecs.h", | 248 "video_codecs.h", |
| 249 "video_decoder.cc", | 249 "video_decoder.cc", |
| 250 "video_decoder.h", | 250 "video_decoder.h", |
| 251 "video_decoder_config.cc", | 251 "video_decoder_config.cc", |
| 252 "video_decoder_config.h", | 252 "video_decoder_config.h", |
| 253 "video_facing.cc", |
| 254 "video_facing.h", |
| 253 "video_frame.cc", | 255 "video_frame.cc", |
| 254 "video_frame.h", | 256 "video_frame.h", |
| 255 "video_frame_metadata.cc", | 257 "video_frame_metadata.cc", |
| 256 "video_frame_metadata.h", | 258 "video_frame_metadata.h", |
| 257 "video_frame_pool.cc", | 259 "video_frame_pool.cc", |
| 258 "video_frame_pool.h", | 260 "video_frame_pool.h", |
| 259 "video_renderer.cc", | 261 "video_renderer.cc", |
| 260 "video_renderer.h", | 262 "video_renderer.h", |
| 261 "video_rotation.h", | 263 "video_rotation.h", |
| 262 "video_types.cc", | 264 "video_types.cc", |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 621 |
| 620 fuzzer_test("media_container_names_fuzzer") { | 622 fuzzer_test("media_container_names_fuzzer") { |
| 621 sources = [ | 623 sources = [ |
| 622 "container_names_fuzzertest.cc", | 624 "container_names_fuzzertest.cc", |
| 623 ] | 625 ] |
| 624 deps = [ | 626 deps = [ |
| 625 "//base", | 627 "//base", |
| 626 "//media", | 628 "//media", |
| 627 ] | 629 ] |
| 628 } | 630 } |
| OLD | NEW |