| 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1365 "loader/resource/CSSStyleSheetResourceTest.cpp", | 1365 "loader/resource/CSSStyleSheetResourceTest.cpp", |
| 1366 "loader/resource/FontResourceTest.cpp", | 1366 "loader/resource/FontResourceTest.cpp", |
| 1367 "loader/resource/ImageResourceTest.cpp", | 1367 "loader/resource/ImageResourceTest.cpp", |
| 1368 "loader/resource/MockFontResourceClient.cpp", | 1368 "loader/resource/MockFontResourceClient.cpp", |
| 1369 "loader/resource/MockFontResourceClient.h", | 1369 "loader/resource/MockFontResourceClient.h", |
| 1370 "loader/resource/MockImageResourceObserver.cpp", | 1370 "loader/resource/MockImageResourceObserver.cpp", |
| 1371 "loader/resource/MockImageResourceObserver.h", | 1371 "loader/resource/MockImageResourceObserver.h", |
| 1372 "loader/resource/MultipartImageResourceParserTest.cpp", | 1372 "loader/resource/MultipartImageResourceParserTest.cpp", |
| 1373 "origin_trials/OriginTrialContextTest.cpp", | 1373 "origin_trials/OriginTrialContextTest.cpp", |
| 1374 "page/ChromeClientTest.cpp", | 1374 "page/ChromeClientTest.cpp", |
| 1375 "page/ContextMenuControllerTest.cpp", | |
| 1376 "page/FocusControllerTest.cpp", | 1375 "page/FocusControllerTest.cpp", |
| 1377 "page/PagePopupClientTest.cpp", | 1376 "page/PagePopupClientTest.cpp", |
| 1378 "page/PrintContextTest.cpp", | 1377 "page/PrintContextTest.cpp", |
| 1379 "page/WindowFeaturesTest.cpp", | 1378 "page/WindowFeaturesTest.cpp", |
| 1380 "page/scrolling/ScrollStateTest.cpp", | 1379 "page/scrolling/ScrollStateTest.cpp", |
| 1381 "page/scrolling/SnapCoordinatorTest.cpp", | 1380 "page/scrolling/SnapCoordinatorTest.cpp", |
| 1382 "paint/BoxPaintInvalidatorTest.cpp", | 1381 "paint/BoxPaintInvalidatorTest.cpp", |
| 1383 "paint/FirstMeaningfulPaintDetectorTest.cpp", | 1382 "paint/FirstMeaningfulPaintDetectorTest.cpp", |
| 1384 "paint/HTMLCanvasPainterTest.cpp", | 1383 "paint/HTMLCanvasPainterTest.cpp", |
| 1385 "paint/LayerClipRecorderTest.cpp", | 1384 "paint/LayerClipRecorderTest.cpp", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 sources = [ | 1471 sources = [ |
| 1473 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1472 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1474 ] | 1473 ] |
| 1475 deps = [ | 1474 deps = [ |
| 1476 ":core", | 1475 ":core", |
| 1477 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1476 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1478 ] | 1477 ] |
| 1479 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1478 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1480 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1479 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1481 } | 1480 } |
| OLD | NEW |