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