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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
272 allow_circular_includes_from = [] | 272 allow_circular_includes_from = [] |
273 defines = [] | 273 defines = [] |
274 public_deps = [ | 274 public_deps = [ |
275 "//ppapi/features", | 275 "//ppapi/features", |
276 ] | 276 ] |
277 deps = [ | 277 deps = [ |
278 "//base/third_party/dynamic_annotations:dynamic_annotations", | 278 "//base/third_party/dynamic_annotations:dynamic_annotations", |
279 "//gpu", | 279 "//gpu", |
280 "//media:media_features", | 280 "//media:media_features", |
281 "//media:shared_memory_support", | 281 "//media:shared_memory_support", |
| 282 "//ppapi/features", |
282 "//skia", | 283 "//skia", |
283 "//third_party/libyuv", | 284 "//third_party/libyuv", |
284 "//ui/events:events_base", | 285 "//ui/events:events_base", |
285 "//url:url", | 286 "//url:url", |
286 ] | 287 ] |
287 libs = [] | 288 libs = [] |
288 configs += [ ":base_config" ] | 289 configs += [ ":base_config" ] |
289 | 290 |
290 if (media_use_ffmpeg) { | 291 if (media_use_ffmpeg) { |
291 if (!is_android) { | 292 if (!is_android) { |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 | 616 |
616 fuzzer_test("media_container_names_fuzzer") { | 617 fuzzer_test("media_container_names_fuzzer") { |
617 sources = [ | 618 sources = [ |
618 "container_names_fuzzertest.cc", | 619 "container_names_fuzzertest.cc", |
619 ] | 620 ] |
620 deps = [ | 621 deps = [ |
621 "//base", | 622 "//base", |
622 "//media", | 623 "//media", |
623 ] | 624 ] |
624 } | 625 } |
OLD | NEW |