| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 2021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2032 "feature_policy/FeaturePolicyFuzzer.cpp", | 2032 "feature_policy/FeaturePolicyFuzzer.cpp", |
| 2033 ] | 2033 ] |
| 2034 deps = [ | 2034 deps = [ |
| 2035 ":blink_fuzzer_test_support", | 2035 ":blink_fuzzer_test_support", |
| 2036 ":platform", | 2036 ":platform", |
| 2037 ] | 2037 ] |
| 2038 dict = "//testing/libfuzzer/fuzzers/dicts/feature_policy.dict" | 2038 dict = "//testing/libfuzzer/fuzzers/dicts/feature_policy.dict" |
| 2039 seed_corpus = "//testing/libfuzzer/fuzzers/feature_policy_corpus" | 2039 seed_corpus = "//testing/libfuzzer/fuzzers/feature_policy_corpus" |
| 2040 } | 2040 } |
| 2041 | 2041 |
| 2042 # Fuzzer for wtf::TextCodec. |
| 2043 fuzzer_test("blink_text_codec_fuzzer") { |
| 2044 sources = [ |
| 2045 "TextCodecFuzzer.cpp", |
| 2046 ] |
| 2047 deps = [ |
| 2048 ":blink_fuzzer_test_support", |
| 2049 ":platform", |
| 2050 ] |
| 2051 |
| 2052 # Seed corpus uploaded to Google Cloud Storage bucket used by ClusterFuzz. |
| 2053 } |
| 2054 |
| 2042 # NOTE: These are legacy unit tests and tests that require a Platform | 2055 # NOTE: These are legacy unit tests and tests that require a Platform |
| 2043 # object. Do not add more unless the test requires a Platform object. | 2056 # object. Do not add more unless the test requires a Platform object. |
| 2044 # These tests are a part of the webkit_unit_tests binary. | 2057 # These tests are a part of the webkit_unit_tests binary. |
| 2045 source_set("unit_tests") { | 2058 source_set("unit_tests") { |
| 2046 testonly = true | 2059 testonly = true |
| 2047 visibility = [] | 2060 visibility = [] |
| 2048 visibility = [ "//third_party/WebKit/Source/*" ] | 2061 visibility = [ "//third_party/WebKit/Source/*" ] |
| 2049 sources = [ | 2062 sources = [ |
| 2050 "graphics/Canvas2DLayerBridgeTest.cpp", | 2063 "graphics/Canvas2DLayerBridgeTest.cpp", |
| 2051 "graphics/CanvasSurfaceLayerBridgeTest.cpp", | 2064 "graphics/CanvasSurfaceLayerBridgeTest.cpp", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 2066 "//third_party/WebKit/Source:inside_blink", | 2079 "//third_party/WebKit/Source:inside_blink", |
| 2067 ] | 2080 ] |
| 2068 | 2081 |
| 2069 deps = [ | 2082 deps = [ |
| 2070 ":test_support", | 2083 ":test_support", |
| 2071 "//cc/surfaces:surface_id", | 2084 "//cc/surfaces:surface_id", |
| 2072 "//testing/gmock", | 2085 "//testing/gmock", |
| 2073 "//testing/gtest", | 2086 "//testing/gtest", |
| 2074 ] | 2087 ] |
| 2075 } | 2088 } |
| OLD | NEW |