OLD | NEW |
---|---|
1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import("gn/shared_sources.gni") | 6 import("gn/shared_sources.gni") |
7 | 7 |
8 if (!defined(is_skia_standalone)) { | 8 if (!defined(is_skia_standalone)) { |
9 is_skia_standalone = false | 9 is_skia_standalone = false |
10 } | 10 } |
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
980 ":flags", | 980 ":flags", |
981 ":gpu_tool_utils", | 981 ":gpu_tool_utils", |
982 ":skia", | 982 ":skia", |
983 ":tool_utils", | 983 ":tool_utils", |
984 "//third_party/jsoncpp", | 984 "//third_party/jsoncpp", |
985 "//third_party/libmicrohttpd", | 985 "//third_party/libmicrohttpd", |
986 "//third_party/libpng", | 986 "//third_party/libpng", |
987 ] | 987 ] |
988 testonly = true | 988 testonly = true |
989 } | 989 } |
990 | |
991 executable("fuzz") { | |
992 sources = [ | |
993 "fuzz/FilterFuzz.cpp", | |
994 "fuzz/FuzzGradients.cpp", | |
995 "fuzz/FuzzParsePath.cpp", | |
996 "fuzz/FuzzPathop.cpp", | |
997 "fuzz/FuzzScaleToSides.cpp", | |
998 "fuzz/fuzz.cpp", | |
999 ] | |
1000 deps = [ | |
mtklein_C
2016/10/03 18:09:40
Seems like deps could be as small as
deps = [
"
| |
1001 ":common_flags", | |
1002 ":experimental_svg_model", | |
1003 ":flags", | |
1004 ":gm", | |
1005 ":gpu_tool_utils", | |
1006 ":skia", | |
1007 ":tool_utils", | |
1008 "//third_party/jsoncpp", | |
1009 "//third_party/libpng", | |
1010 ] | |
1011 testonly = true | |
1012 } | |
990 } | 1013 } |
OLD | NEW |