aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD.gn
diff options
context:
space:
mode:
authorGravatar Ethan Nicholas <ethannicholas@google.com>2016-11-14 11:16:37 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2016-11-14 17:06:44 +0000
commit4f3985c636542e46fedddf736401d74c70ba7384 (patch)
tree6a94121b8584453f94f67ced41030882534b8e43 /BUILD.gn
parent87c36f230234b7b5e5d04953d0ac9937cc7f7b5f (diff)
added skslc to BUILD.gn
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=4764 Change-Id: I89330cfa4be4d43d9183a8e53b28d6c0061f33e2 Reviewed-on: https://skia-review.googlesource.com/4764 Reviewed-by: Mike Klein <mtklein@chromium.org> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index dab8918c08..13884f2d14 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1356,4 +1356,17 @@ if (skia_enable_tools) {
testonly = true
}
}
+
+ if (skia_enable_gpu) {
+ executable("skslc") {
+ sources = [
+ "src/sksl/SkSLMain.cpp",
+ ]
+ deps = [
+ ":flags",
+ ":skia",
+ ]
+ testonly = true
+ }
+ }
}