| OLD | NEW |
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'mojo_js_lib', | 4 'target_name': 'mojo_js_lib', |
| 5 'type': 'static_library', | 5 'type': 'static_library', |
| 6 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../gin/gin.gyp:gin', | 8 '../gin/gin.gyp:gin', |
| 9 '../ui/gl/gl.gyp:gl', | 9 '../ui/gl/gl.gyp:gl', |
| 10 '../v8/tools/gyp/v8.gyp:v8', | 10 '../v8/tools/gyp/v8.gyp:v8', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 'apps/js/bindings/threading.h', | 32 'apps/js/bindings/threading.h', |
| 33 'apps/js/bindings/gl/context.cc', | 33 'apps/js/bindings/gl/context.cc', |
| 34 'apps/js/bindings/gl/context.h', | 34 'apps/js/bindings/gl/context.h', |
| 35 'apps/js/bindings/gl/module.cc', | 35 'apps/js/bindings/gl/module.cc', |
| 36 'apps/js/bindings/gl/module.h', | 36 'apps/js/bindings/gl/module.h', |
| 37 'apps/js/bindings/monotonic_clock.cc', | 37 'apps/js/bindings/monotonic_clock.cc', |
| 38 'apps/js/bindings/monotonic_clock.h', | 38 'apps/js/bindings/monotonic_clock.h', |
| 39 ], | 39 ], |
| 40 }, | 40 }, |
| 41 { | 41 { |
| 42 'target_name': 'mojo_js_unittests', | 42 'target_name': 'mojo_apps_js_unittests', |
| 43 'type': 'executable', | 43 'type': 'executable', |
| 44 'dependencies': [ | 44 'dependencies': [ |
| 45 '../gin/gin.gyp:gin_test', | 45 '../gin/gin.gyp:gin_test', |
| 46 'mojo_js_lib', | 46 'mojo_js_lib', |
| 47 'mojo_run_all_unittests', | 47 'mojo_run_all_unittests', |
| 48 'mojo_sample_service', | 48 'mojo_sample_service', |
| 49 ], | 49 ], |
| 50 'sources': [ | 50 'sources': [ |
| 51 'apps/js/test/run_js_tests.cc', | 51 'apps/js/test/run_apps_js_tests.cc', |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 { | 54 { |
| 55 'target_name': 'mojo_js', | 55 'target_name': 'mojo_js', |
| 56 'type': 'shared_library', | 56 'type': 'shared_library', |
| 57 'dependencies': [ | 57 'dependencies': [ |
| 58 'mojo_js_lib', | 58 'mojo_js_lib', |
| 59 ], | 59 ], |
| 60 'sources': [ | 60 'sources': [ |
| 61 'apps/js/main.cc', | 61 'apps/js/main.cc', |
| 62 ], | 62 ], |
| 63 }, | 63 }, |
| 64 ], | 64 ], |
| 65 } | 65 } |
| OLD | NEW |