| 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/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/toolchain/toolchain.gni") | 7 import("//build/toolchain/toolchain.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//testing/libfuzzer/fuzzer_test.gni") | 10 import("//testing/libfuzzer/fuzzer_test.gni") |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 } | 74 } |
| 75 | 75 |
| 76 core_config_add += [ ":blink_core_pch" ] | 76 core_config_add += [ ":blink_core_pch" ] |
| 77 | 77 |
| 78 source_set("generated") { | 78 source_set("generated") { |
| 79 deps = [ | 79 deps = [ |
| 80 ":core_generated", | 80 ":core_generated", |
| 81 ":prerequisites", | 81 ":prerequisites", |
| 82 "//gin", | 82 "//gin", |
| 83 "//skia", | 83 "//skia", |
| 84 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_conditional_feat
ures", |
| 84 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 85 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
| 85 "//third_party/WebKit/Source/core/inspector:generated", | 86 "//third_party/WebKit/Source/core/inspector:generated", |
| 86 "//third_party/WebKit/Source/core/probe:generated", | 87 "//third_party/WebKit/Source/core/probe:generated", |
| 87 "//third_party/iccjpeg", | 88 "//third_party/iccjpeg", |
| 88 "//third_party/libpng", | 89 "//third_party/libpng", |
| 89 "//third_party/libwebp", | 90 "//third_party/libwebp", |
| 90 "//third_party/libxml", | 91 "//third_party/libxml", |
| 91 "//third_party/libxslt", | 92 "//third_party/libxslt", |
| 92 "//third_party/sqlite", | 93 "//third_party/sqlite", |
| 93 | 94 |
| (...skipping 1526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1620 sources = [ | 1621 sources = [ |
| 1621 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1622 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1622 ] | 1623 ] |
| 1623 deps = [ | 1624 deps = [ |
| 1624 ":core", | 1625 ":core", |
| 1625 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1626 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1626 ] | 1627 ] |
| 1627 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1628 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1628 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1629 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1629 } | 1630 } |
| OLD | NEW |