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

Side by Side Diff: BUILD.gn

Issue 2367513002: GN: build skiaserve (Closed)
Patch Set: sys/socket Created 4 years, 3 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 | third_party/libmicrohttpd/BUILD.gn » ('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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 sources = [ 913 sources = [
914 "tools/get_images_from_skps.cpp", 914 "tools/get_images_from_skps.cpp",
915 ] 915 ]
916 deps = [ 916 deps = [
917 ":flags", 917 ":flags",
918 ":skia", 918 ":skia",
919 "//third_party/jsoncpp", 919 "//third_party/jsoncpp",
920 ] 920 ]
921 testonly = true 921 testonly = true
922 } 922 }
923
924 executable("skiaserve") {
925 sources = [
926 "tools/skiaserve/Request.cpp",
927 "tools/skiaserve/Response.cpp",
928 "tools/skiaserve/skiaserve.cpp",
929 "tools/skiaserve/urlhandlers/BatchBoundsHandler.cpp",
930 "tools/skiaserve/urlhandlers/BatchesHandler.cpp",
931 "tools/skiaserve/urlhandlers/BreakHandler.cpp",
932 "tools/skiaserve/urlhandlers/ClipAlphaHandler.cpp",
933 "tools/skiaserve/urlhandlers/CmdHandler.cpp",
934 "tools/skiaserve/urlhandlers/ColorModeHandler.cpp",
935 "tools/skiaserve/urlhandlers/DataHandler.cpp",
936 "tools/skiaserve/urlhandlers/DownloadHandler.cpp",
937 "tools/skiaserve/urlhandlers/EnableGPUHandler.cpp",
938 "tools/skiaserve/urlhandlers/ImgHandler.cpp",
939 "tools/skiaserve/urlhandlers/InfoHandler.cpp",
940 "tools/skiaserve/urlhandlers/PostHandler.cpp",
941 "tools/skiaserve/urlhandlers/QuitHandler.cpp",
942 "tools/skiaserve/urlhandlers/RootHandler.cpp",
943 ]
944 deps = [
945 ":flags",
946 ":gpu_tool_utils",
947 ":skia",
948 ":tool_utils",
949 "//third_party/jsoncpp",
950 "//third_party/libmicrohttpd",
951 "//third_party/libpng",
952 ]
953 testonly = true
954 }
923 } 955 }
OLDNEW
« no previous file with comments | « no previous file | third_party/libmicrohttpd/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698