| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//build_overrides/v8.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 11 import("//mojo/public/tools/bindings/mojom.gni") |
| 11 import("//testing/libfuzzer/fuzzer_test.gni") | 12 import("//testing/libfuzzer/fuzzer_test.gni") |
| 12 import("//testing/test.gni") | 13 import("//testing/test.gni") |
| 13 import("//v8/gni/v8.gni") | |
| 14 | 14 |
| 15 content_tests_gypi_values = | 15 content_tests_gypi_values = |
| 16 exec_script("//build/gypi_to_gn.py", | 16 exec_script("//build/gypi_to_gn.py", |
| 17 [ | 17 [ |
| 18 rebase_path("../content_tests.gypi"), | 18 rebase_path("../content_tests.gypi"), |
| 19 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 19 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
| 20 ], | 20 ], |
| 21 "scope", | 21 "scope", |
| 22 [ "../content_tests.gypi" ]) | 22 [ "../content_tests.gypi" ]) |
| 23 | 23 |
| (...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 "renderer_fuzzer.cc", | 913 "renderer_fuzzer.cc", |
| 914 ] | 914 ] |
| 915 deps = [ | 915 deps = [ |
| 916 ":test_support", | 916 ":test_support", |
| 917 "//content/renderer:for_content_tests", | 917 "//content/renderer:for_content_tests", |
| 918 "//content/shell:content_shell_lib", | 918 "//content/shell:content_shell_lib", |
| 919 "//gin", | 919 "//gin", |
| 920 ] | 920 ] |
| 921 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" | 921 dict = "data/fuzzer_dictionaries/renderer_fuzzer.dict" |
| 922 } | 922 } |
| OLD | NEW |