Index: gyp/skmojo.gyp |
diff --git a/gyp/skmojo.gyp b/gyp/skmojo.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..63385cd2fa79d14df466e648f0654295f0203e75 |
--- /dev/null |
+++ b/gyp/skmojo.gyp |
@@ -0,0 +1,59 @@ |
+# 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': 'mojo', |
+ 'type': 'static_library', |
+ 'variables': { 'mojo_parent_dir': '../third_party/externals' }, |
+ 'include_dirs': [ '<(mojo_parent_dir)' ], |
+ 'all_dependent_settings': { 'include_dirs': [ '<(mojo_parent_dir)' ] }, |
+ 'sources': [ |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*.cc")', |
+ '<(mojo_parent_dir)/mojo/public/platform/native/system_thunks.c', |
+ ], |
+ 'sources!': [ |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*_unittest.cc")', |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*_perftest.cc")', |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*_apptest.cc")', |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*_test_*.cc")', |
+ '<!@(python find.py <(mojo_parent_dir)/mojo/public/cpp "*_win.cc")', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'skmojo', |
+ 'type': 'static_library', |
+ 'variables': { |
+ 'mojo_dir': '../third_party/externals/mojo/public' |
+ }, |
+ 'dependencies': [ 'mojo' ], |
+ 'defines': [ 'SK_MOJO' ], |
+ 'sources': [ '../experimental/mojo/SkMojo.mojom.cc', ], |
+ 'include_dirs': [ '../experimental/mojo', ], |
+ 'all_dependent_settings': { |
+ 'include_dirs': [ '../experimental/mojo' ], |
+ 'defines': [ 'SK_MOJO' ], |
+ }, |
+ 'actions':[ |
+ { |
+ 'action_name': 'generate_from_mojoms', |
+ 'inputs': [ |
+ '../experimental/mojo/generate.py', |
+ '../experimental/mojo/SkMojo.mojom', |
+ '<(mojo_dir)/tools/bindings/mojom_parser/bin/linux64/mojom_parser.sha1', |
+ '<(mojo_dir)/tools/bindings/mojom_bindings_generator.py', |
+ '<(mojo_dir)/interfaces/bindings/interface_control_messages.mojom', |
+ '<(mojo_dir)/interfaces/application/service_provider.mojom', |
+ '<(mojo_dir)/interfaces/bindings/tests/ping_service.mojom', |
+ '<(mojo_dir)/interfaces/application/application.mojom', |
+ ], |
+ 'outputs': ['../experimental/mojo/SkMojo.mojom.h', |
+ '../experimental/mojo/SkMojo.mojom.cc'], |
+ 'action': ['python', '../experimental/mojo/generate.py'] |
+ }, |
+ ], |
+ }, |
+ ], |
+} |