| 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 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 "layout/LayoutBoxTest.cpp", | 1303 "layout/LayoutBoxTest.cpp", |
| 1304 "layout/LayoutInlineTest.cpp", | 1304 "layout/LayoutInlineTest.cpp", |
| 1305 "layout/LayoutMediaTest.cpp", | 1305 "layout/LayoutMediaTest.cpp", |
| 1306 "layout/LayoutMultiColumnFlowThreadTest.cpp", | 1306 "layout/LayoutMultiColumnFlowThreadTest.cpp", |
| 1307 "layout/LayoutObjectTest.cpp", | 1307 "layout/LayoutObjectTest.cpp", |
| 1308 "layout/LayoutPartTest.cpp", | 1308 "layout/LayoutPartTest.cpp", |
| 1309 "layout/LayoutProgressTest.cpp", | 1309 "layout/LayoutProgressTest.cpp", |
| 1310 "layout/LayoutTableCellTest.cpp", | 1310 "layout/LayoutTableCellTest.cpp", |
| 1311 "layout/LayoutTableRowTest.cpp", | 1311 "layout/LayoutTableRowTest.cpp", |
| 1312 "layout/LayoutTableSectionTest.cpp", | 1312 "layout/LayoutTableSectionTest.cpp", |
| 1313 "layout/LayoutTableTest.cpp", |
| 1313 "layout/LayoutTestHelper.cpp", | 1314 "layout/LayoutTestHelper.cpp", |
| 1314 "layout/LayoutTestHelper.h", | 1315 "layout/LayoutTestHelper.h", |
| 1315 "layout/LayoutTextTest.cpp", | 1316 "layout/LayoutTextTest.cpp", |
| 1316 "layout/LayoutThemeTest.cpp", | 1317 "layout/LayoutThemeTest.cpp", |
| 1317 "layout/MapCoordinatesTest.cpp", | 1318 "layout/MapCoordinatesTest.cpp", |
| 1318 "layout/MultiColumnFragmentainerGroupTest.cpp", | 1319 "layout/MultiColumnFragmentainerGroupTest.cpp", |
| 1319 "layout/OverflowModelTest.cpp", | 1320 "layout/OverflowModelTest.cpp", |
| 1320 "layout/PaginationTest.cpp", | 1321 "layout/PaginationTest.cpp", |
| 1321 "layout/PaintContainmentTest.cpp", | 1322 "layout/PaintContainmentTest.cpp", |
| 1322 "layout/ScrollAnchorTest.cpp", | 1323 "layout/ScrollAnchorTest.cpp", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1472 sources = [ | 1473 sources = [ |
| 1473 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1474 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1474 ] | 1475 ] |
| 1475 deps = [ | 1476 deps = [ |
| 1476 ":core", | 1477 ":core", |
| 1477 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1478 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1478 ] | 1479 ] |
| 1479 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1480 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1480 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1481 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1481 } | 1482 } |
| OLD | NEW |