| 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. | 19 # For BUILDFLAG(USE_EXPERIMENTAL_ALLOCATOR_SHIM). |
| 20 "//base/allocator:allocator_shim_define", | 20 "//base/allocator:features", |
| 21 "//build/config:precompiled_headers", | 21 "//build/config:precompiled_headers", |
| 22 "//build/config/compiler:no_size_t_to_int_warning", | 22 "//build/config/compiler:no_size_t_to_int_warning", |
| 23 "//media:media_config", | 23 "//media:media_config", |
| 24 "//media:media_dependent_config", | 24 "//media:media_dependent_config", |
| 25 "//media:media_implementation", | 25 "//media:media_implementation", |
| 26 ] | 26 ] |
| 27 } | 27 } |
| 28 | 28 |
| 29 if (is_component_build) { | 29 if (is_component_build) { |
| 30 link_target_type = "source_set" | 30 link_target_type = "source_set" |
| (...skipping 539 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 |