Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(679)

Side by Side Diff: content/test/BUILD.gn

Issue 2029323005: [libfuzzer] content/renderer fuzzer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/test/renderer_fuzzer.cc » ('j') | content/test/renderer_fuzzer.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build_overrides/v8.gni")
11 import("//mojo/public/tools/bindings/mojom.gni") 11 import("//mojo/public/tools/bindings/mojom.gni")
12 import("//testing/libfuzzer/fuzzer_test.gni")
12 import("//testing/test.gni") 13 import("//testing/test.gni")
13 14
14 content_tests_gypi_values = 15 content_tests_gypi_values =
15 exec_script("//build/gypi_to_gn.py", 16 exec_script("//build/gypi_to_gn.py",
16 [ 17 [
17 rebase_path("../content_tests.gypi"), 18 rebase_path("../content_tests.gypi"),
18 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", 19 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir",
19 ], 20 ],
20 "scope", 21 "scope",
21 [ "../content_tests.gypi" ]) 22 [ "../content_tests.gypi" ])
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after
896 "//testing/gtest", 897 "//testing/gtest",
897 "//testing/perf", 898 "//testing/perf",
898 "//ui/gfx", 899 "//ui/gfx",
899 "//ui/gfx/geometry", 900 "//ui/gfx/geometry",
900 ] 901 ]
901 902
902 if (is_android) { 903 if (is_android) {
903 deps += [ "//testing/android/native_test:native_test_native_code" ] 904 deps += [ "//testing/android/native_test:native_test_native_code" ]
904 } 905 }
905 } 906 }
907
908 fuzzer_test("renderer_fuzzer") {
909 sources = [
910 "renderer_fuzzer.cc",
911 ]
912 deps = [
913 ":test_support",
914 "//content/shell:content_shell_lib",
915 ]
916 }
OLDNEW
« no previous file with comments | « no previous file | content/test/renderer_fuzzer.cc » ('j') | content/test/renderer_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698