| 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': [
|
|
|