| 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 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 962 } | 962 } |
| 963 | 963 |
| 964 # Fuzzer for blink::TextResourceDecoder. | 964 # Fuzzer for blink::TextResourceDecoder. |
| 965 fuzzer_test("text_resource_decoder_fuzzer") { | 965 fuzzer_test("text_resource_decoder_fuzzer") { |
| 966 sources = [ | 966 sources = [ |
| 967 "html/parser/TextResourceDecoderForFuzzing.h", | 967 "html/parser/TextResourceDecoderForFuzzing.h", |
| 968 "html/parser/TextResourceDecoderFuzzer.cpp", | 968 "html/parser/TextResourceDecoderFuzzer.cpp", |
| 969 ] | 969 ] |
| 970 deps = [ | 970 deps = [ |
| 971 ":core", | 971 ":core", |
| 972 "../platform:test_support", | 972 "../platform:blink_fuzzer_test_support", |
| 973 ] | 973 ] |
| 974 } | 974 } |
| 975 | 975 |
| 976 source_set("unit_tests") { | 976 source_set("unit_tests") { |
| 977 testonly = true | 977 testonly = true |
| 978 sources = [ | 978 sources = [ |
| 979 "animation/AnimationClockTest.cpp", | 979 "animation/AnimationClockTest.cpp", |
| 980 "animation/AnimationEffectReadOnlyTest.cpp", | 980 "animation/AnimationEffectReadOnlyTest.cpp", |
| 981 "animation/AnimationInputHelpersTest.cpp", | 981 "animation/AnimationInputHelpersTest.cpp", |
| 982 "animation/AnimationStackTest.cpp", | 982 "animation/AnimationStackTest.cpp", |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 sources = [ | 1314 sources = [ |
| 1315 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1315 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1316 "html/parser/TextResourceDecoderForFuzzing.h", | 1316 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1317 ] | 1317 ] |
| 1318 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1318 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1319 deps = [ | 1319 deps = [ |
| 1320 ":core", | 1320 ":core", |
| 1321 "../platform:blink_fuzzer_test_support", | 1321 "../platform:blink_fuzzer_test_support", |
| 1322 ] | 1322 ] |
| 1323 } | 1323 } |
| OLD | NEW |