| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js<(script_suffix)', | 138 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js<(script_suffix)', |
| 139 '-p<(PRODUCT_DIR)/packages/', | 139 '-p<(PRODUCT_DIR)/packages/', |
| 140 '-Denable_ir=false', | 140 '-Denable_ir=false', |
| 141 '--show-package-warnings', | 141 '--show-package-warnings', |
| 142 '--trust-type-annotations', | 142 '--trust-type-annotations', |
| 143 'src/compiler_isolate.dart', | 143 'src/compiler_isolate.dart', |
| 144 '-o<(SHARED_INTERMEDIATE_DIR)/compiler_isolate.dart.js', | 144 '-o<(SHARED_INTERMEDIATE_DIR)/compiler_isolate.dart.js', |
| 145 ], | 145 ], |
| 146 }, | 146 }, |
| 147 { | 147 { |
| 148 'action_name': 'nossl_appcache', | |
| 149 'message': 'Creating nossl.appcache', | |
| 150 'inputs': [ | |
| 151 'add_time_stamp.py', | |
| 152 'nossl.appcache', | |
| 153 'nossl.js', | |
| 154 'nossl.html', | |
| 155 'build_try.gyp', # If the list of files changed. | |
| 156 ], | |
| 157 'outputs': [ | |
| 158 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', | |
| 159 ], | |
| 160 # Try Dart! uses AppCache. Cached files are only validated when the | |
| 161 # manifest changes (not its timestamp, but its actual contents). | |
| 162 'action': [ | |
| 163 'python', | |
| 164 'add_time_stamp.py', | |
| 165 'nossl.appcache', | |
| 166 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', | |
| 167 ], | |
| 168 }, | |
| 169 { | |
| 170 'action_name': 'ssl_appcache', | 148 'action_name': 'ssl_appcache', |
| 171 'message': 'Creating ssl.appcache', | 149 'message': 'Creating ssl.appcache', |
| 172 'inputs': [ | 150 'inputs': [ |
| 173 'add_time_stamp.py', | 151 'add_time_stamp.py', |
| 174 'ssl.appcache', | 152 'ssl.appcache', |
| 175 '<@(try_dart_static_files)', | 153 '<@(try_dart_static_files)', |
| 176 'build_try.gyp', # If the list of files changed. | 154 'build_try.gyp', # If the list of files changed. |
| 177 ], | 155 ], |
| 178 'outputs': [ | 156 'outputs': [ |
| 179 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', | 157 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 207 }, | 185 }, |
| 208 ], | 186 ], |
| 209 'copies': [ | 187 'copies': [ |
| 210 { | 188 { |
| 211 # Destination directory. | 189 # Destination directory. |
| 212 'destination': '<(PRODUCT_DIR)/try_dartlang_org/', | 190 'destination': '<(PRODUCT_DIR)/try_dartlang_org/', |
| 213 # List of files to be copied (creates implicit build dependencies). | 191 # List of files to be copied (creates implicit build dependencies). |
| 214 'files': [ | 192 'files': [ |
| 215 'app.yaml', | 193 'app.yaml', |
| 216 '<@(try_dart_static_files)', | 194 '<@(try_dart_static_files)', |
| 217 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', | |
| 218 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', | 195 '<(SHARED_INTERMEDIATE_DIR)/ssl.appcache', |
| 219 'nossl.js', | |
| 220 'nossl.html', | |
| 221 ], | 196 ], |
| 222 }, | 197 }, |
| 223 ], | 198 ], |
| 224 }, | 199 }, |
| 225 ], | 200 ], |
| 226 } | 201 } |
| OLD | NEW |