| 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") |
| 11 import("//testing/libfuzzer/fuzzer_test.gni") | 11 import("//testing/libfuzzer/fuzzer_test.gni") |
| 12 | 12 |
| 13 if (is_android) { | 13 if (is_android) { |
| 14 import("//build/config/android/rules.gni") | 14 import("//build/config/android/rules.gni") |
| 15 } | 15 } |
| 16 | 16 |
| 17 config("base_config") { | 17 config("base_config") { |
| 18 configs = [ | 18 configs = [ |
| 19 # This target uses the ALLOCATOR_SHIM define. | |
| 20 "//base/allocator:allocator_shim_define", | |
| 21 "//build/config:precompiled_headers", | 19 "//build/config:precompiled_headers", |
| 22 "//build/config/compiler:no_size_t_to_int_warning", | 20 "//build/config/compiler:no_size_t_to_int_warning", |
| 23 "//media:media_config", | 21 "//media:media_config", |
| 24 "//media:media_dependent_config", | 22 "//media:media_dependent_config", |
| 25 "//media:media_implementation", | 23 "//media:media_implementation", |
| 26 ] | 24 ] |
| 27 } | 25 } |
| 28 | 26 |
| 29 if (is_component_build) { | 27 if (is_component_build) { |
| 30 link_target_type = "source_set" | 28 link_target_type = "source_set" |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 ] | 272 ] |
| 275 | 273 |
| 276 allow_circular_includes_from = [] | 274 allow_circular_includes_from = [] |
| 277 defines = [] | 275 defines = [] |
| 278 public_deps = [ | 276 public_deps = [ |
| 279 "//media/base:video_facing", | 277 "//media/base:video_facing", |
| 280 "//ppapi/features", | 278 "//ppapi/features", |
| 281 "//ui/gfx:color_space", | 279 "//ui/gfx:color_space", |
| 282 ] | 280 ] |
| 283 deps = [ | 281 deps = [ |
| 282 # For BUILDFLAG(USE_ALLOCATOR_SHIM). |
| 283 "//base/allocator:features", |
| 284 "//base/third_party/dynamic_annotations:dynamic_annotations", | 284 "//base/third_party/dynamic_annotations:dynamic_annotations", |
| 285 "//gpu", | 285 "//gpu", |
| 286 "//media:media_features", | 286 "//media:media_features", |
| 287 "//media:shared_memory_support", | 287 "//media:shared_memory_support", |
| 288 "//ppapi/features", | 288 "//ppapi/features", |
| 289 "//skia", | 289 "//skia", |
| 290 "//third_party/libyuv", | 290 "//third_party/libyuv", |
| 291 "//ui/events:events_base", | 291 "//ui/events:events_base", |
| 292 "//url:url", | 292 "//url:url", |
| 293 ] | 293 ] |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 | 570 |
| 571 fuzzer_test("media_container_names_fuzzer") { | 571 fuzzer_test("media_container_names_fuzzer") { |
| 572 sources = [ | 572 sources = [ |
| 573 "container_names_fuzzertest.cc", | 573 "container_names_fuzzertest.cc", |
| 574 ] | 574 ] |
| 575 deps = [ | 575 deps = [ |
| 576 "//base", | 576 "//base", |
| 577 "//media", | 577 "//media", |
| 578 ] | 578 ] |
| 579 } | 579 } |
| OLD | NEW |