| 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 "wall_clock_time_source.cc", | 229 "wall_clock_time_source.cc", |
| 230 "wall_clock_time_source.h", | 230 "wall_clock_time_source.h", |
| 231 "yuv_convert.cc", | 231 "yuv_convert.cc", |
| 232 "yuv_convert.h", | 232 "yuv_convert.h", |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 allow_circular_includes_from = [] | 235 allow_circular_includes_from = [] |
| 236 defines = [] | 236 defines = [] |
| 237 public_deps = [] | 237 public_deps = [] |
| 238 deps = [ | 238 deps = [ |
| 239 "//base/third_party/dynamic_annotations:dynamic_annotations", |
| 240 "//gpu", |
| 241 "//media:shared_memory_support", |
| 239 "//skia", | 242 "//skia", |
| 240 "//ui/events:events_base", | 243 "//ui/events:events_base", |
| 244 "//url:url", |
| 241 ] | 245 ] |
| 242 libs = [] | 246 libs = [] |
| 243 configs += [ | 247 configs += [ |
| 244 # This target uses the ALLOCATOR_SHIM define. | 248 # This target uses the ALLOCATOR_SHIM define. |
| 245 "//base/allocator:allocator_shim_define", | 249 "//base/allocator:allocator_shim_define", |
| 246 "//build/config:precompiled_headers", | 250 "//build/config:precompiled_headers", |
| 247 "//media:media_config", | 251 "//media:media_config", |
| 248 "//media:media_implementation", | 252 "//media:media_implementation", |
| 249 ] | 253 ] |
| 250 | 254 |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 | 580 |
| 577 fuzzer_test("media_container_names_fuzzer") { | 581 fuzzer_test("media_container_names_fuzzer") { |
| 578 sources = [ | 582 sources = [ |
| 579 "container_names_fuzzertest.cc", | 583 "container_names_fuzzertest.cc", |
| 580 ] | 584 ] |
| 581 deps = [ | 585 deps = [ |
| 582 "//base", | 586 "//base", |
| 583 "//media", | 587 "//media", |
| 584 ] | 588 ] |
| 585 } | 589 } |
| OLD | NEW |