summaryrefslogtreecommitdiffstats
path: root/mojo/cc
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-29 09:26:20 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-29 09:26:20 +0000
commit8bb00ee6dc3b62e7dad19b3220253ebb70dc8b30 (patch)
treee50adb64be76feb6005a35b853377fa12b24fe26 /mojo/cc
parent45f0b3a2052cdfffdd08c86119142ecf789b3cad (diff)
downloadchromium_src-8bb00ee6dc3b62e7dad19b3220253ebb70dc8b30.zip
chromium_src-8bb00ee6dc3b62e7dad19b3220253ebb70dc8b30.tar.gz
chromium_src-8bb00ee6dc3b62e7dad19b3220253ebb70dc8b30.tar.bz2
GN: Add GN rules for mojo_shell target
This adds GN rules for mojo_shell and all of its dependencies on linux in the static build. BUG=397679 Review URL: https://codereview.chromium.org/414323003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286143 0039d316-1c4b-4281-b951-d872f2087c98
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",
+ ]
+}