| 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 config("base_config") { | 13 config("base_config") { |
| 14 configs = [ | 14 configs = [ |
| 15 # This target uses the ALLOCATOR_SHIM define. | 15 # This target uses the ALLOCATOR_SHIM define. |
| 16 "//base/allocator:allocator_shim_define", | 16 "//base:base_allocator_shim_define", |
| 17 "//build/config:precompiled_headers", | 17 "//build/config:precompiled_headers", |
| 18 "//build/config/compiler:no_size_t_to_int_warning", | 18 "//build/config/compiler:no_size_t_to_int_warning", |
| 19 "//media:media_config", | 19 "//media:media_config", |
| 20 "//media:media_dependent_config", | 20 "//media:media_dependent_config", |
| 21 "//media:media_implementation", | 21 "//media:media_implementation", |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 | 24 |
| 25 if (is_component_build) { | 25 if (is_component_build) { |
| 26 link_target_type = "source_set" | 26 link_target_type = "source_set" |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 | 619 |
| 620 fuzzer_test("media_container_names_fuzzer") { | 620 fuzzer_test("media_container_names_fuzzer") { |
| 621 sources = [ | 621 sources = [ |
| 622 "container_names_fuzzertest.cc", | 622 "container_names_fuzzertest.cc", |
| 623 ] | 623 ] |
| 624 deps = [ | 624 deps = [ |
| 625 "//base", | 625 "//base", |
| 626 "//media", | 626 "//media", |
| 627 ] | 627 ] |
| 628 } | 628 } |
| OLD | NEW |