| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/toolchain/toolchain.gni") | 6 import("//build/toolchain/toolchain.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 import("//third_party/WebKit/Source/bindings/bindings.gni") | 10 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "//url", | 170 "//url", |
| 171 "//v8", | 171 "//v8", |
| 172 ] | 172 ] |
| 173 deps = [ | 173 deps = [ |
| 174 "//third_party/WebKit/Source/core/animation", | 174 "//third_party/WebKit/Source/core/animation", |
| 175 "//third_party/WebKit/Source/core/clipboard", | 175 "//third_party/WebKit/Source/core/clipboard", |
| 176 "//third_party/WebKit/Source/core/css", | 176 "//third_party/WebKit/Source/core/css", |
| 177 "//third_party/WebKit/Source/core/dom", | 177 "//third_party/WebKit/Source/core/dom", |
| 178 "//third_party/WebKit/Source/core/editing", | 178 "//third_party/WebKit/Source/core/editing", |
| 179 "//third_party/WebKit/Source/core/events", | 179 "//third_party/WebKit/Source/core/events", |
| 180 "//third_party/WebKit/Source/core/exported", |
| 180 "//third_party/WebKit/Source/core/fileapi", | 181 "//third_party/WebKit/Source/core/fileapi", |
| 181 "//third_party/WebKit/Source/core/frame", | 182 "//third_party/WebKit/Source/core/frame", |
| 182 "//third_party/WebKit/Source/core/geometry", | 183 "//third_party/WebKit/Source/core/geometry", |
| 183 "//third_party/WebKit/Source/core/html", | 184 "//third_party/WebKit/Source/core/html", |
| 184 "//third_party/WebKit/Source/core/imagebitmap", | 185 "//third_party/WebKit/Source/core/imagebitmap", |
| 185 "//third_party/WebKit/Source/core/input", | 186 "//third_party/WebKit/Source/core/input", |
| 186 "//third_party/WebKit/Source/core/inspector", | 187 "//third_party/WebKit/Source/core/inspector", |
| 187 "//third_party/WebKit/Source/core/layout", | 188 "//third_party/WebKit/Source/core/layout", |
| 188 "//third_party/WebKit/Source/core/layout/svg:svg_layout", | 189 "//third_party/WebKit/Source/core/layout/svg:svg_layout", |
| 189 "//third_party/WebKit/Source/core/loader", | 190 "//third_party/WebKit/Source/core/loader", |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 sources = [ | 1461 sources = [ |
| 1461 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1462 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1462 ] | 1463 ] |
| 1463 deps = [ | 1464 deps = [ |
| 1464 ":core", | 1465 ":core", |
| 1465 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1466 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1466 ] | 1467 ] |
| 1467 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1468 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1468 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1469 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1469 } | 1470 } |
| OLD | NEW |