| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'try_site', | 8 'target_name': 'try_site', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 # action is executed. | 69 # action is executed. |
| 70 '<(PRODUCT_DIR)/dart-sdk/README', | 70 '<(PRODUCT_DIR)/dart-sdk/README', |
| 71 | 71 |
| 72 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "src"])', | 72 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "src"])', |
| 73 ], | 73 ], |
| 74 'outputs': [ | 74 'outputs': [ |
| 75 '<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', | 75 '<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', |
| 76 ], | 76 ], |
| 77 'action': [ | 77 'action': [ |
| 78 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js', | 78 '<(PRODUCT_DIR)/dart-sdk/bin/dart2js', |
| 79 '-v', | 79 '-p../../sdk/lib/_internal/', |
| 80 '-Denable_ir=false', | 80 '-Denable_ir=false', |
| 81 'src/leap.dart', | 81 'src/leap.dart', |
| 82 '-o<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', | 82 '-o<(SHARED_INTERMEDIATE_DIR)/leap.dart.js', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 { | 85 { |
| 86 'action_name': 'nossl_appcache', | 86 'action_name': 'nossl_appcache', |
| 87 'message': 'Creating nossl.appcache', | 87 'message': 'Creating nossl.appcache', |
| 88 'inputs': [ | 88 'inputs': [ |
| 89 'add_time_stamp.py', | 89 'add_time_stamp.py', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 112 'files': [ | 112 'files': [ |
| 113 'app.yaml', | 113 'app.yaml', |
| 114 '<@(try_dart_static_files)', | 114 '<@(try_dart_static_files)', |
| 115 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', | 115 '<(SHARED_INTERMEDIATE_DIR)/nossl.appcache', |
| 116 ], | 116 ], |
| 117 }, | 117 }, |
| 118 ], | 118 ], |
| 119 }, | 119 }, |
| 120 ], | 120 ], |
| 121 } | 121 } |
| OLD | NEW |