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

Unified Diff: mojo/mojo_apps.gypi

Issue 100573003: [Mojo] Move JS bindings out of public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix header guards Created 7 years 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
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_apps.gypi
diff --git a/mojo/mojo_apps.gypi b/mojo/mojo_apps.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..5d5605f2f6151c83f31d88d756d90a2b27f5d07d
--- /dev/null
+++ b/mojo/mojo_apps.gypi
@@ -0,0 +1,59 @@
+{
+ 'targets': [
+ {
+ 'target_name': 'mojo_js_lib',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../gin/gin.gyp:gin',
+ 'hello_world_service',
+ 'mojo_common_lib',
+ 'mojo_system',
+ ],
+ 'export_dependent_settings': [
+ '../base/base.gyp:base',
+ '../gin/gin.gyp:gin',
+ 'hello_world_service',
+ 'mojo_common_lib',
+ 'mojo_system',
+ ],
+ 'sources': [
+ 'apps/js/mojo_runner_delegate.cc',
+ 'apps/js/mojo_runner_delegate.h',
+ 'apps/js/bindings/threading.cc',
+ 'apps/js/bindings/threading.h',
+ 'apps/js/bindings/core.cc',
+ 'apps/js/bindings/core.h',
+ 'apps/js/bindings/handle.cc',
+ 'apps/js/bindings/handle.h',
+ 'apps/js/bindings/support.cc',
+ 'apps/js/bindings/support.h',
+ 'apps/js/bindings/waiting_callback.cc',
+ 'apps/js/bindings/waiting_callback.h',
+ ],
+ },
+ {
+ 'target_name': 'mojo_js_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../gin/gin.gyp:gin_test',
+ 'mojo_js_lib',
+ 'mojo_run_all_unittests',
+ 'sample_service',
+ ],
+ 'sources': [
+ 'apps/js/test/run_js_tests.cc',
+ ],
+ },
+ {
+ 'target_name': 'mojo_js',
+ 'type': 'shared_library',
+ 'dependencies': [
+ 'mojo_js_lib',
+ ],
+ 'sources': [
+ 'apps/js/main.cc',
+ ],
+ },
+ ],
+}
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698