| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 150 |
| 151 visibility = [] # Allow re-assignment of list. | 151 visibility = [] # Allow re-assignment of list. |
| 152 visibility = [ "//third_party/WebKit/*" ] | 152 visibility = [ "//third_party/WebKit/*" ] |
| 153 | 153 |
| 154 # If you create a new subdirectory, make a new BUILD file for that directory | 154 # If you create a new subdirectory, make a new BUILD file for that directory |
| 155 # and reference it in the deps below rather than adding the sources here. | 155 # and reference it in the deps below rather than adding the sources here. |
| 156 sources = [ | 156 sources = [ |
| 157 "CoreExport.h", | 157 "CoreExport.h", |
| 158 "CoreInitializer.cpp", | 158 "CoreInitializer.cpp", |
| 159 "CoreInitializer.h", | 159 "CoreInitializer.h", |
| 160 "WebFactory.cpp", |
| 161 "WebFactory.h", |
| 160 ] | 162 ] |
| 161 | 163 |
| 162 configs -= core_config_remove | 164 configs -= core_config_remove |
| 163 configs += core_config_add | 165 configs += core_config_add |
| 164 | 166 |
| 165 public_deps = [ | 167 public_deps = [ |
| 166 ":core_generated", | 168 ":core_generated", |
| 167 "//skia", | 169 "//skia", |
| 168 "//third_party/WebKit/Source/platform", | 170 "//third_party/WebKit/Source/platform", |
| 169 "//third_party/WebKit/Source/platform/wtf", | 171 "//third_party/WebKit/Source/platform/wtf", |
| (...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 sources = [ | 1474 sources = [ |
| 1473 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1475 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1474 ] | 1476 ] |
| 1475 deps = [ | 1477 deps = [ |
| 1476 ":core", | 1478 ":core", |
| 1477 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1479 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1478 ] | 1480 ] |
| 1479 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1481 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1480 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1482 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1481 } | 1483 } |
| OLD | NEW |