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

Side by Side Diff: BUILD.gn

Issue 2281733003: tools: skp_parser (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase 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 | tools/debugger/SkDrawCommand.h » ('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 942 matching lines...) Expand 10 before | Expand all | Expand 10 after
953 ":flags", 953 ":flags",
954 ":gpu_tool_utils", 954 ":gpu_tool_utils",
955 ":skia", 955 ":skia",
956 ":tool_utils", 956 ":tool_utils",
957 "//third_party/jsoncpp", 957 "//third_party/jsoncpp",
958 "//third_party/libmicrohttpd", 958 "//third_party/libmicrohttpd",
959 "//third_party/libpng", 959 "//third_party/libpng",
960 ] 960 ]
961 testonly = true 961 testonly = true
962 } 962 }
963
964 executable("skpparser") {
mtklein_C 2016/10/17 18:14:05 Wouldn't you feel better if this were named skp_pa
hal.canary 2016/10/17 18:31:46 Done.
965 sources = [
966 "tools/skp_parser.cpp",
967 ]
968 deps = [
969 ":skia",
970 ":tool_utils",
971 "//third_party/jsoncpp",
972 ]
973 testonly = true
974 }
963 } 975 }
OLDNEW
« no previous file with comments | « no previous file | tools/debugger/SkDrawCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698