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/Source/build/scripts/scripts.gni") | 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
10 import("//third_party/WebKit/Source/config.gni") | 10 import("//third_party/WebKit/Source/config.gni") |
(...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1907 ":test_support", | 1907 ":test_support", |
1908 ] | 1908 ] |
1909 dict = "//testing/libfuzzer/fuzzers/dicts/mhtml.dict" | 1909 dict = "//testing/libfuzzer/fuzzers/dicts/mhtml.dict" |
1910 seed_corpus = "//third_party/WebKit/LayoutTests/mhtml" | 1910 seed_corpus = "//third_party/WebKit/LayoutTests/mhtml" |
1911 additional_configs = [ | 1911 additional_configs = [ |
1912 "//third_party/WebKit/Source/wtf:wtf_config", | 1912 "//third_party/WebKit/Source/wtf:wtf_config", |
1913 "//third_party/WebKit/Source:config", | 1913 "//third_party/WebKit/Source:config", |
1914 ] | 1914 ] |
1915 } | 1915 } |
1916 | 1916 |
| 1917 # Fuzzer for blink::WebIconSizesParser. |
| 1918 fuzzer_test("web_icon_sizes_fuzzer") { |
| 1919 sources = [ |
| 1920 "WebIconSizesFuzzer.cpp", |
| 1921 ] |
| 1922 deps = [ |
| 1923 ":blink_fuzzer_test_support", |
| 1924 ":platform", |
| 1925 ] |
| 1926 dict = "//testing/libfuzzer/fuzzers/dicts/web_icon_sizes.dict" |
| 1927 } |
| 1928 |
1917 # NOTE: These are legacy unit tests and tests that require a Platform | 1929 # NOTE: These are legacy unit tests and tests that require a Platform |
1918 # object. Do not add more unless the test requires a Platform object. | 1930 # object. Do not add more unless the test requires a Platform object. |
1919 # These tests are a part of the webkit_unit_tests binary. | 1931 # These tests are a part of the webkit_unit_tests binary. |
1920 source_set("unit_tests") { | 1932 source_set("unit_tests") { |
1921 testonly = true | 1933 testonly = true |
1922 visibility = [] | 1934 visibility = [] |
1923 visibility = [ "//third_party/WebKit/Source/*" ] | 1935 visibility = [ "//third_party/WebKit/Source/*" ] |
1924 sources = [ | 1936 sources = [ |
1925 "graphics/Canvas2DLayerBridgeTest.cpp", | 1937 "graphics/Canvas2DLayerBridgeTest.cpp", |
1926 "graphics/CanvasSurfaceLayerBridgeTest.cpp", | 1938 "graphics/CanvasSurfaceLayerBridgeTest.cpp", |
(...skipping 12 matching lines...) Expand all Loading... |
1939 "//third_party/WebKit/Source:inside_blink", | 1951 "//third_party/WebKit/Source:inside_blink", |
1940 ] | 1952 ] |
1941 | 1953 |
1942 deps = [ | 1954 deps = [ |
1943 ":test_support", | 1955 ":test_support", |
1944 "//cc/surfaces:surface_id", | 1956 "//cc/surfaces:surface_id", |
1945 "//testing/gmock", | 1957 "//testing/gmock", |
1946 "//testing/gtest", | 1958 "//testing/gtest", |
1947 ] | 1959 ] |
1948 } | 1960 } |
OLD | NEW |