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

Side by Side Diff: BUILD.gn

Issue 2281733003: tools: skp_parser (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: skpparser->skp_parser 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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 "tools/skdiff/skdiff_html.cpp", 1077 "tools/skdiff/skdiff_html.cpp",
1078 "tools/skdiff/skdiff_main.cpp", 1078 "tools/skdiff/skdiff_main.cpp",
1079 "tools/skdiff/skdiff_utils.cpp", 1079 "tools/skdiff/skdiff_utils.cpp",
1080 ] 1080 ]
1081 deps = [ 1081 deps = [
1082 ":skia", 1082 ":skia",
1083 ":tool_utils", 1083 ":tool_utils",
1084 ] 1084 ]
1085 testonly = true 1085 testonly = true
1086 } 1086 }
1087
1088 executable("skp_parser") {
1089 sources = [
1090 "tools/skp_parser.cpp",
1091 ]
1092 deps = [
1093 ":skia",
1094 ":tool_utils",
1095 "//third_party/jsoncpp",
1096 ]
1097 testonly = true
1098 }
1087 } 1099 }
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