OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, 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 | 3 # BSD-style license that can be found in the LICENSE |
4 | 4 |
5 { | 5 { |
6 'variables' : { | 6 'variables' : { |
7 'script_suffix%': '', | 7 'script_suffix%': '', |
8 }, | 8 }, |
9 'conditions' : [ | 9 'conditions' : [ |
10 ['OS=="win"', { | 10 ['OS=="win"', { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'message': 'Creating sdk.json', | 68 'message': 'Creating sdk.json', |
69 'inputs': [ | 69 'inputs': [ |
70 | 70 |
71 # Depending on this file ensures that the SDK is built before this | 71 # Depending on this file ensures that the SDK is built before this |
72 # action is executed. | 72 # action is executed. |
73 '<(PRODUCT_DIR)/dart-sdk/README', | 73 '<(PRODUCT_DIR)/dart-sdk/README', |
74 | 74 |
75 # This dependency is redundant for now, as this directory is | 75 # This dependency is redundant for now, as this directory is |
76 # implicitly part of the dependencies for dart-sdk/README. | 76 # implicitly part of the dependencies for dart-sdk/README. |
77 '<!@(["python", "../../tools/list_files.py", "\\.dart$", ' | 77 '<!@(["python", "../../tools/list_files.py", "\\.dart$", ' |
78 '"../../sdk/lib/_internal/compiler/samples/jsonify"])', | 78 '"../../pkg/compiler/samples/jsonify"])', |
79 ], | 79 ], |
80 'outputs': [ | 80 'outputs': [ |
81 '<(SHARED_INTERMEDIATE_DIR)/sdk.json', | 81 '<(SHARED_INTERMEDIATE_DIR)/sdk.json', |
82 ], | 82 ], |
83 'action': [ | 83 'action': [ |
84 | 84 |
85 '<(PRODUCT_DIR)/dart-sdk/bin/' | 85 '<(PRODUCT_DIR)/dart-sdk/bin/' |
86 '<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', | 86 '<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', |
87 | 87 |
88 '-Dlist_all_libraries=true', | 88 '-Dlist_all_libraries=true', |
89 '-DoutputJson=true', | 89 '-DoutputJson=true', |
90 '../../sdk/lib/_internal/compiler/samples/jsonify/jsonify.dart', | 90 '--package-root=<(PRODUCT_DIR)/packages/', |
| 91 '../../pkg/compiler/samples/jsonify/jsonify.dart', |
91 '<(SHARED_INTERMEDIATE_DIR)/sdk.json', | 92 '<(SHARED_INTERMEDIATE_DIR)/sdk.json', |
92 ], | 93 ], |
93 }, | 94 }, |
94 { | 95 { |
95 'action_name': 'compile', | 96 'action_name': 'compile', |
96 'message': 'Creating leap.dart.js', | 97 'message': 'Creating leap.dart.js', |
97 'inputs': [ | 98 'inputs': [ |
98 # Depending on this file ensures that the SDK is built before this | 99 # Depending on this file ensures that the SDK is built before this |
99 # action is executed. | 100 # action is executed. |
100 '<(PRODUCT_DIR)/dart-sdk/README', | 101 '<(PRODUCT_DIR)/dart-sdk/README', |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'files': [ | 191 'files': [ |
191 'app.yaml', | 192 'app.yaml', |
192 '<@(try_dart_static_files)', | 193 '<@(try_dart_static_files)', |
193 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', | 194 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', |
194 ], | 195 ], |
195 }, | 196 }, |
196 ], | 197 ], |
197 }, | 198 }, |
198 ], | 199 ], |
199 } | 200 } |
OLD | NEW |