| 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 = [ |
| 1001 ":flags", |
| 1002 ":skia", |
| 1003 ] |
| 1004 testonly = true |
| 1005 } |
| 990 } | 1006 } |
| OLD | NEW |