OLD | NEW |
(Empty) | |
| 1 { |
| 2 'targets': [ |
| 3 { |
| 4 'target_name': 'mojo_js_lib', |
| 5 'type': 'static_library', |
| 6 'dependencies': [ |
| 7 '../base/base.gyp:base', |
| 8 '../gin/gin.gyp:gin', |
| 9 'hello_world_service', |
| 10 'mojo_common_lib', |
| 11 'mojo_system', |
| 12 ], |
| 13 'export_dependent_settings': [ |
| 14 '../base/base.gyp:base', |
| 15 '../gin/gin.gyp:gin', |
| 16 'hello_world_service', |
| 17 'mojo_common_lib', |
| 18 'mojo_system', |
| 19 ], |
| 20 'sources': [ |
| 21 'apps/js/mojo_runner_delegate.cc', |
| 22 'apps/js/mojo_runner_delegate.h', |
| 23 'apps/js/bindings/threading.cc', |
| 24 'apps/js/bindings/threading.h', |
| 25 'apps/js/bindings/core.cc', |
| 26 'apps/js/bindings/core.h', |
| 27 'apps/js/bindings/handle.cc', |
| 28 'apps/js/bindings/handle.h', |
| 29 'apps/js/bindings/support.cc', |
| 30 'apps/js/bindings/support.h', |
| 31 'apps/js/bindings/waiting_callback.cc', |
| 32 'apps/js/bindings/waiting_callback.h', |
| 33 ], |
| 34 }, |
| 35 { |
| 36 'target_name': 'mojo_js_unittests', |
| 37 'type': 'executable', |
| 38 'dependencies': [ |
| 39 '../gin/gin.gyp:gin_test', |
| 40 'mojo_js_lib', |
| 41 'mojo_run_all_unittests', |
| 42 'sample_service', |
| 43 ], |
| 44 'sources': [ |
| 45 'apps/js/test/run_js_tests.cc', |
| 46 ], |
| 47 }, |
| 48 { |
| 49 'target_name': 'mojo_js', |
| 50 'type': 'shared_library', |
| 51 'dependencies': [ |
| 52 'mojo_js_lib', |
| 53 ], |
| 54 'sources': [ |
| 55 'apps/js/main.cc', |
| 56 ], |
| 57 }, |
| 58 ], |
| 59 } |
OLD | NEW |