| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 # and only forward some of them. | 145 # and only forward some of them. |
| 146 component("core") { | 146 component("core") { |
| 147 output_name = "blink_core" | 147 output_name = "blink_core" |
| 148 | 148 |
| 149 visibility = [] # Allow re-assignment of list. | 149 visibility = [] # Allow re-assignment of list. |
| 150 visibility = [ "//third_party/WebKit/*" ] | 150 visibility = [ "//third_party/WebKit/*" ] |
| 151 | 151 |
| 152 # If you create a new subdirectory, make a new BUILD file for that directory | 152 # If you create a new subdirectory, make a new BUILD file for that directory |
| 153 # and reference it in the deps below rather than adding the sources here. | 153 # and reference it in the deps below rather than adding the sources here. |
| 154 sources = [ | 154 sources = [ |
| 155 "CoreExport.h", |
| 155 "CoreInitializer.cpp", | 156 "CoreInitializer.cpp", |
| 156 "CoreInitializer.h", | 157 "CoreInitializer.h", |
| 157 ] | 158 ] |
| 158 | 159 |
| 159 configs -= core_config_remove | 160 configs -= core_config_remove |
| 160 configs += core_config_add | 161 configs += core_config_add |
| 161 | 162 |
| 162 public_deps = [ | 163 public_deps = [ |
| 163 ":core_generated", | 164 ":core_generated", |
| 164 "//skia", | 165 "//skia", |
| (...skipping 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 sources = [ | 1443 sources = [ |
| 1443 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1444 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1444 ] | 1445 ] |
| 1445 deps = [ | 1446 deps = [ |
| 1446 ":core", | 1447 ":core", |
| 1447 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1448 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1448 ] | 1449 ] |
| 1449 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1450 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1450 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1451 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1451 } | 1452 } |
| OLD | NEW |