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

Unified Diff: mojo/mojo.gyp

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: spelling Created 7 years, 1 month 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: mojo/mojo.gyp
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp
index 72e6477a521f07a7457cd8365cf9bcd4e12551e2..8b4782255262cfe2540eacc25138b65b3a5e858f 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -25,6 +25,7 @@
'sample_app',
'mojo_bindings',
'mojo_bindings_test',
+ 'mojo_js_bindings',
'native_viewport',
],
},
@@ -277,6 +278,7 @@
],
'dependencies': [
'../v8/tools/gyp/v8.gyp:v8',
+ 'mojo_js_bindings',
],
'sources': [
'apps/js/main.cc',
@@ -339,6 +341,32 @@
],
},
{
+ 'target_name': 'mojo_js_bindings',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..'
+ ],
+ 'dependencies': [
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'export_dependent_settings': [
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'sources': [
+ 'public/bindings/js/v8_array_buffer.cc',
+ 'public/bindings/js/v8_array_buffer.h',
+ 'public/bindings/js/v8_conversions.h',
+ 'public/bindings/js/v8_core.cc',
+ 'public/bindings/js/v8_core.h',
+ 'public/bindings/js/v8_exceptions.cc',
+ 'public/bindings/js/v8_exceptions.h',
+ 'public/bindings/js/v8_per_isolate_data.cc',
+ 'public/bindings/js/v8_per_isolate_data.h',
+ 'public/bindings/js/v8_wrapper.cc',
+ 'public/bindings/js/v8_wrapper.h',
+ ],
+ },
+ {
'target_name': 'native_viewport',
'type': 'static_library',
'dependencies': [

Powered by Google App Engine
This is Rietveld 408576698