Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1778)

Unified Diff: gyp/skiamojo.gyp

Issue 1644043003: SkMojo: test linking Skia against the Mojo SDK (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gyp/skiamojo.gyp
diff --git a/gyp/skiamojo.gyp b/gyp/skiamojo.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..ab6c985819eab2fa28a1beabae7aa6df7e043a91
--- /dev/null
+++ b/gyp/skiamojo.gyp
@@ -0,0 +1,20 @@
+# Copyright 2016 Google Inc.
+#
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'targets': [
+ {
+ 'target_name': 'skiamojo',
+ 'type': 'static_library',
+ 'sources': [ '../experimental/mojo/Skia.mojom.cc', ],
mtklein 2016/01/29 01:07:38 There some way to get gyp to generate this dynamic
hal.canary 2016/01/29 17:58:30 I think I've got it now.
+ 'include_dirs': [ '../third_party/externals', '../experimental/mojo', ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ '../third_party/externals',
+ '../experimental/mojo',
+ ],
+ },
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698