| 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 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1627 sources = [ | 1628 sources = [ |
| 1628 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1629 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1629 ] | 1630 ] |
| 1630 deps = [ | 1631 deps = [ |
| 1631 ":core", | 1632 ":core", |
| 1632 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1633 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1633 ] | 1634 ] |
| 1634 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1635 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1635 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1636 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1636 } | 1637 } |
| OLD | NEW |