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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 } |
OLD | NEW |