Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: BUILD.gn

Issue 2389853002: Add fuzz executable to GN (Closed)
Patch Set: Trim down deps Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | fuzz/FuzzParsePath.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | fuzz/FuzzParsePath.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698