| 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "testing/LayerRectList.h", | 264 "testing/LayerRectList.h", |
| 265 "testing/MockHyphenation.cpp", | 265 "testing/MockHyphenation.cpp", |
| 266 "testing/MockHyphenation.h", | 266 "testing/MockHyphenation.h", |
| 267 "testing/NullExecutionContext.cpp", | 267 "testing/NullExecutionContext.cpp", |
| 268 "testing/NullExecutionContext.h", | 268 "testing/NullExecutionContext.h", |
| 269 "testing/OriginTrialsTest.cpp", | 269 "testing/OriginTrialsTest.cpp", |
| 270 "testing/OriginTrialsTest.h", | 270 "testing/OriginTrialsTest.h", |
| 271 "testing/OriginTrialsTestPartial.h", | 271 "testing/OriginTrialsTestPartial.h", |
| 272 "testing/RecordTest.cpp", | 272 "testing/RecordTest.cpp", |
| 273 "testing/RecordTest.h", | 273 "testing/RecordTest.h", |
| 274 "testing/SequenceTest.cpp", |
| 275 "testing/SequenceTest.h", |
| 274 "testing/TypeConversions.h", | 276 "testing/TypeConversions.h", |
| 275 "testing/UnionTypesTest.cpp", | 277 "testing/UnionTypesTest.cpp", |
| 276 "testing/UnionTypesTest.h", | 278 "testing/UnionTypesTest.h", |
| 277 "testing/WorkerInternals.cpp", | 279 "testing/WorkerInternals.cpp", |
| 278 "testing/WorkerInternals.h", | 280 "testing/WorkerInternals.h", |
| 279 "testing/v8/WebCoreTestSupport.cpp", | 281 "testing/v8/WebCoreTestSupport.cpp", |
| 280 "testing/v8/WebCoreTestSupport.h", | 282 "testing/v8/WebCoreTestSupport.h", |
| 281 ] | 283 ] |
| 282 | 284 |
| 283 # Compile the sources produced by these IDL file lists. | 285 # Compile the sources produced by these IDL file lists. |
| (...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 sources = [ | 1452 sources = [ |
| 1451 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1453 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1452 ] | 1454 ] |
| 1453 deps = [ | 1455 deps = [ |
| 1454 ":core", | 1456 ":core", |
| 1455 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1457 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1456 ] | 1458 ] |
| 1457 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1459 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1458 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1460 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1459 } | 1461 } |
| OLD | NEW |