| 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 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1318 "html/track/vtt/BufferedLineReaderTest.cpp", | 1318 "html/track/vtt/BufferedLineReaderTest.cpp", |
| 1319 "html/track/vtt/VTTScannerTest.cpp", | 1319 "html/track/vtt/VTTScannerTest.cpp", |
| 1320 "input/EventHandlerTest.cpp", | 1320 "input/EventHandlerTest.cpp", |
| 1321 "inspector/ProtocolParserTest.cpp", | 1321 "inspector/ProtocolParserTest.cpp", |
| 1322 "layout/CollapsedBorderValueTest.cpp", | 1322 "layout/CollapsedBorderValueTest.cpp", |
| 1323 "layout/ImageQualityControllerTest.cpp", | 1323 "layout/ImageQualityControllerTest.cpp", |
| 1324 "layout/LayoutBlockTest.cpp", | 1324 "layout/LayoutBlockTest.cpp", |
| 1325 "layout/LayoutBoxModelObjectTest.cpp", | 1325 "layout/LayoutBoxModelObjectTest.cpp", |
| 1326 "layout/LayoutBoxTest.cpp", | 1326 "layout/LayoutBoxTest.cpp", |
| 1327 "layout/LayoutEmbeddedContentTest.cpp", | 1327 "layout/LayoutEmbeddedContentTest.cpp", |
| 1328 "layout/LayoutIFrameTest.cpp", |
| 1328 "layout/LayoutInlineTest.cpp", | 1329 "layout/LayoutInlineTest.cpp", |
| 1329 "layout/LayoutMediaTest.cpp", | 1330 "layout/LayoutMediaTest.cpp", |
| 1330 "layout/LayoutMultiColumnFlowThreadTest.cpp", | 1331 "layout/LayoutMultiColumnFlowThreadTest.cpp", |
| 1331 "layout/LayoutObjectTest.cpp", | 1332 "layout/LayoutObjectTest.cpp", |
| 1332 "layout/LayoutProgressTest.cpp", | 1333 "layout/LayoutProgressTest.cpp", |
| 1333 "layout/LayoutTableCellTest.cpp", | 1334 "layout/LayoutTableCellTest.cpp", |
| 1334 "layout/LayoutTableRowTest.cpp", | 1335 "layout/LayoutTableRowTest.cpp", |
| 1335 "layout/LayoutTableSectionTest.cpp", | 1336 "layout/LayoutTableSectionTest.cpp", |
| 1336 "layout/LayoutTableTest.cpp", | 1337 "layout/LayoutTableTest.cpp", |
| 1337 "layout/LayoutTestHelper.cpp", | 1338 "layout/LayoutTestHelper.cpp", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1517 sources = [ | 1518 sources = [ |
| 1518 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1519 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1519 ] | 1520 ] |
| 1520 deps = [ | 1521 deps = [ |
| 1521 ":core", | 1522 ":core", |
| 1522 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1523 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1523 ] | 1524 ] |
| 1524 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1525 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1525 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1526 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1526 } | 1527 } |
| OLD | NEW |