| 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 '../gpu/gpu.gyp:gles2_c_lib', | 8 '../gpu/gpu.gyp:gles2_c_lib', |
| 9 '../gin/gin.gyp:gin', | 9 '../gin/gin.gyp:gin', |
| 10 '../ui/gl/gl.gyp:gl', | 10 '../ui/gl/gl.gyp:gl', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'apps/js/bindings/threading.cc', | 30 'apps/js/bindings/threading.cc', |
| 31 'apps/js/bindings/threading.h', | 31 'apps/js/bindings/threading.h', |
| 32 'apps/js/bindings/core.cc', | 32 'apps/js/bindings/core.cc', |
| 33 'apps/js/bindings/core.h', | 33 'apps/js/bindings/core.h', |
| 34 'apps/js/bindings/gl/context.cc', | 34 'apps/js/bindings/gl/context.cc', |
| 35 'apps/js/bindings/gl/context.h', | 35 'apps/js/bindings/gl/context.h', |
| 36 'apps/js/bindings/gl/module.cc', | 36 'apps/js/bindings/gl/module.cc', |
| 37 'apps/js/bindings/gl/module.h', | 37 'apps/js/bindings/gl/module.h', |
| 38 'apps/js/bindings/handle.cc', | 38 'apps/js/bindings/handle.cc', |
| 39 'apps/js/bindings/handle.h', | 39 'apps/js/bindings/handle.h', |
| 40 'apps/js/bindings/monotonic_clock.cc', |
| 41 'apps/js/bindings/monotonic_clock.h', |
| 40 'apps/js/bindings/support.cc', | 42 'apps/js/bindings/support.cc', |
| 41 'apps/js/bindings/support.h', | 43 'apps/js/bindings/support.h', |
| 42 'apps/js/bindings/waiting_callback.cc', | 44 'apps/js/bindings/waiting_callback.cc', |
| 43 'apps/js/bindings/waiting_callback.h', | 45 'apps/js/bindings/waiting_callback.h', |
| 44 ], | 46 ], |
| 45 }, | 47 }, |
| 46 { | 48 { |
| 47 'target_name': 'mojo_js_unittests', | 49 'target_name': 'mojo_js_unittests', |
| 48 'type': 'executable', | 50 'type': 'executable', |
| 49 'dependencies': [ | 51 'dependencies': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 61 'type': 'shared_library', | 63 'type': 'shared_library', |
| 62 'dependencies': [ | 64 'dependencies': [ |
| 63 'mojo_js_lib', | 65 'mojo_js_lib', |
| 64 ], | 66 ], |
| 65 'sources': [ | 67 'sources': [ |
| 66 'apps/js/main.cc', | 68 'apps/js/main.cc', |
| 67 ], | 69 ], |
| 68 }, | 70 }, |
| 69 ], | 71 ], |
| 70 } | 72 } |
| OLD | NEW |