| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 'conditions': [ |
| 66 ['test_isolation_mode != "noop"', { |
| 67 'targets': [ |
| 68 { |
| 69 'target_name': 'mojo_apps_js_unittests_run', |
| 70 'type': 'none', |
| 71 'dependencies': [ |
| 72 'mojo_apps_js_unittests', |
| 73 ], |
| 74 'includes': [ |
| 75 '../build/isolate.gypi', |
| 76 'mojo_apps_js_unittests.isolate', |
| 77 ], |
| 78 'sources': [ |
| 79 'mojo_apps_js_unittests.isolate', |
| 80 ], |
| 81 }, |
| 82 ], |
| 83 }], |
| 84 ], |
| 65 } | 85 } |
| OLD | NEW |