| OLD | NEW | 
|---|
| 1 # Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors.  Please see the AUTHORS file | 
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a | 
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. | 
| 4 | 4 | 
| 5 { | 5 { | 
| 6   'targets': [ | 6   'targets': [ | 
| 7     { | 7     { | 
| 8       'target_name': 'most', | 8       'target_name': 'most', | 
| 9       'type': 'none', | 9       'type': 'none', | 
| 10       'dependencies': [ | 10       'dependencies': [ | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 23       # suites. | 23       # suites. | 
| 24       'target_name': 'runtime', | 24       'target_name': 'runtime', | 
| 25       'type': 'none', | 25       'type': 'none', | 
| 26       'dependencies': [ | 26       'dependencies': [ | 
| 27         'runtime/dart-runtime.gyp:dart', | 27         'runtime/dart-runtime.gyp:dart', | 
| 28         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 28         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 
| 29         'runtime/dart-runtime.gyp:run_vm_tests', | 29         'runtime/dart-runtime.gyp:run_vm_tests', | 
| 30         'runtime/dart-runtime.gyp:process_test', | 30         'runtime/dart-runtime.gyp:process_test', | 
| 31         'runtime/dart-runtime.gyp:test_extension', | 31         'runtime/dart-runtime.gyp:test_extension', | 
| 32         'runtime/dart-runtime.gyp:sample_extension', | 32         'runtime/dart-runtime.gyp:sample_extension', | 
|  | 33         'runtime/dart-runtime.gyp:generate_patched_sdk#host', | 
| 33       ], | 34       ], | 
| 34     }, | 35     }, | 
| 35     { | 36     { | 
| 36       # This is the target that is built on the VM build bots.  It | 37       # This is the target that is built on the VM build bots.  It | 
| 37       # must depend on anything that is required by the VM test | 38       # must depend on anything that is required by the VM test | 
| 38       # suites. | 39       # suites. | 
| 39       'target_name': 'runtime_precompiled', | 40       'target_name': 'runtime_precompiled', | 
| 40       'type': 'none', | 41       'type': 'none', | 
| 41       'dependencies': [ | 42       'dependencies': [ | 
| 42         'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 43         'runtime/dart-runtime.gyp:dart_precompiled_runtime', | 
| 43         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 44         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 
|  | 45         'runtime/dart-runtime.gyp:generate_patched_sdk#host', | 
| 44       ], | 46       ], | 
| 45     }, | 47     }, | 
| 46     { | 48     { | 
| 47       # This is the target that is built on the VM build bots.  It | 49       # This is the target that is built on the VM build bots.  It | 
| 48       # must depend on anything that is required by the VM test | 50       # must depend on anything that is required by the VM test | 
| 49       # suites. | 51       # suites. | 
| 50       'target_name': 'runtime_and_noopt', | 52       'target_name': 'runtime_and_noopt', | 
| 51       'type': 'none', | 53       'type': 'none', | 
| 52       'dependencies': [ | 54       'dependencies': [ | 
| 53         'runtime/dart-runtime.gyp:dart', | 55         'runtime/dart-runtime.gyp:dart', | 
| 54         'runtime/dart-runtime.gyp:dart_noopt', | 56         'runtime/dart-runtime.gyp:dart_noopt', | 
| 55         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 57         'runtime/dart-runtime.gyp:dart_bootstrap#host', | 
| 56         'runtime/dart-runtime.gyp:run_vm_tests', | 58         'runtime/dart-runtime.gyp:run_vm_tests', | 
| 57         'runtime/dart-runtime.gyp:process_test', | 59         'runtime/dart-runtime.gyp:process_test', | 
| 58         'runtime/dart-runtime.gyp:test_extension', | 60         'runtime/dart-runtime.gyp:test_extension', | 
| 59         'runtime/dart-runtime.gyp:sample_extension', | 61         'runtime/dart-runtime.gyp:sample_extension', | 
|  | 62         'runtime/dart-runtime.gyp:generate_patched_sdk#host', | 
| 60       ], | 63       ], | 
| 61     }, | 64     }, | 
|  | 65 | 
| 62     { | 66     { | 
| 63       'target_name': 'create_sdk', | 67       'target_name': 'create_sdk', | 
| 64       'type': 'none', | 68       'type': 'none', | 
| 65       'dependencies': [ | 69       'dependencies': [ | 
| 66         'create_sdk.gyp:create_sdk_internal', | 70         'create_sdk.gyp:create_sdk_internal', | 
| 67       ], | 71       ], | 
| 68     }, | 72     }, | 
| 69     { | 73     { | 
| 70       'target_name': 'dart2js', | 74       'target_name': 'dart2js', | 
| 71       'type': 'none', | 75       'type': 'none', | 
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 119         ['OS!="android"', { | 123         ['OS!="android"', { | 
| 120            'dependencies': [ | 124            'dependencies': [ | 
| 121              'runtime/dart-runtime.gyp:sample_extension', | 125              'runtime/dart-runtime.gyp:sample_extension', | 
| 122            ], | 126            ], | 
| 123           }, | 127           }, | 
| 124         ], | 128         ], | 
| 125       ] | 129       ] | 
| 126     }, | 130     }, | 
| 127   ], | 131   ], | 
| 128 } | 132 } | 
| OLD | NEW | 
|---|