summaryrefslogtreecommitdiffstats
path: root/mojo/cc
diff options
context:
space:
mode:
Diffstat (limited to 'mojo/cc')
-rw-r--r--mojo/cc/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/mojo/cc/BUILD.gn b/mojo/cc/BUILD.gn
new file mode 100644
index 0000000..415bf44
--- /dev/null
+++ b/mojo/cc/BUILD.gn
@@ -0,0 +1,18 @@
+# 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("cc") {
+ deps = [
+ "//base",
+ "//cc",
+ "//skia",
+ "//gpu/command_buffer/client:gles2_implementation",
+ "//mojo/public/gles2",
+ ]
+
+ sources = [
+ "context_provider_mojo.cc",
+ "context_provider_mojo.h",
+ ]
+}