summaryrefslogtreecommitdiffstats
path: root/gpu/skia_bindings
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-29 20:54:24 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-29 20:54:24 +0000
commitd05751a22809b045682aa91be4bc84e6a1f788a9 (patch)
tree7bed72a409a71f498b5cc69306c678a754b30059 /gpu/skia_bindings
parent5298cc98317968c0fe2caf004e1a88d78a1ccd39 (diff)
downloadchromium_src-d05751a22809b045682aa91be4bc84e6a1f788a9.zip
chromium_src-d05751a22809b045682aa91be4bc84e6a1f788a9.tar.gz
chromium_src-d05751a22809b045682aa91be4bc84e6a1f788a9.tar.bz2
Add CC to the GN build, work on GPU more
BUG= R=jamesr@chromium.org TBR=piman Review URL: https://codereview.chromium.org/300973003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@273588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/skia_bindings')
-rw-r--r--gpu/skia_bindings/BUILD.gn14
1 files changed, 14 insertions, 0 deletions
diff --git a/gpu/skia_bindings/BUILD.gn b/gpu/skia_bindings/BUILD.gn
new file mode 100644
index 0000000..2bd2a44
--- /dev/null
+++ b/gpu/skia_bindings/BUILD.gn
@@ -0,0 +1,14 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("skia_bindings") {
+ sources = [
+ "gl_bindings_skia_cmd_buffer.cc",
+ "gl_bindings_skia_cmd_buffer.h",
+ ]
+ deps = [
+ "//gpu/command_buffer/client:gles2_c_lib",
+ "//skia",
+ ]
+}