| 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 1890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1901 visibility = [] # Allow re-assignment of list. | 1901 visibility = [] # Allow re-assignment of list. |
| 1902 visibility = [ "*" ] | 1902 visibility = [ "*" ] |
| 1903 sources = [ | 1903 sources = [ |
| 1904 "testing/BlinkFuzzerTestSupport.cpp", | 1904 "testing/BlinkFuzzerTestSupport.cpp", |
| 1905 "testing/BlinkFuzzerTestSupport.h", | 1905 "testing/BlinkFuzzerTestSupport.h", |
| 1906 ] | 1906 ] |
| 1907 deps = [ | 1907 deps = [ |
| 1908 ":platform", | 1908 ":platform", |
| 1909 ":test_support", | 1909 ":test_support", |
| 1910 "//content/test:test_support", | 1910 "//content/test:test_support", |
| 1911 "//mojo/edk/system:system", | |
| 1912 ] | 1911 ] |
| 1913 } | 1912 } |
| 1914 | 1913 |
| 1915 # Fuzzer for blink::MHTMLParser. | 1914 # Fuzzer for blink::MHTMLParser. |
| 1916 fuzzer_test("mhtml_parser_fuzzer") { | 1915 fuzzer_test("mhtml_parser_fuzzer") { |
| 1917 sources = [ | 1916 sources = [ |
| 1918 "mhtml/MHTMLFuzzer.cpp", | 1917 "mhtml/MHTMLFuzzer.cpp", |
| 1919 ] | 1918 ] |
| 1920 deps = [ | 1919 deps = [ |
| 1921 ":blink_common", | 1920 ":blink_common", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1980 "//third_party/WebKit/Source:inside_blink", | 1979 "//third_party/WebKit/Source:inside_blink", |
| 1981 ] | 1980 ] |
| 1982 | 1981 |
| 1983 deps = [ | 1982 deps = [ |
| 1984 ":test_support", | 1983 ":test_support", |
| 1985 "//cc/surfaces:surface_id", | 1984 "//cc/surfaces:surface_id", |
| 1986 "//testing/gmock", | 1985 "//testing/gmock", |
| 1987 "//testing/gtest", | 1986 "//testing/gtest", |
| 1988 ] | 1987 ] |
| 1989 } | 1988 } |
| OLD | NEW |