| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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': 'compiler', | 8 'target_name': 'compiler', |
| 9 'type': 'none', | 9 'type': 'none', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 # dependences once issues 754 and 755 are fixed | 51 # dependences once issues 754 and 755 are fixed |
| 52 'client/html/html.dart', | 52 'client/html/html.dart', |
| 53 'client/html/htmlimpl.dart', | 53 'client/html/htmlimpl.dart', |
| 54 'client/dom/dom.dart', | 54 'client/dom/dom.dart', |
| 55 'client/dom/generated', | 55 'client/dom/generated', |
| 56 'client/dom/src', | 56 'client/dom/src', |
| 57 'frog/frogc', | 57 'frog/frogc', |
| 58 'tools/create_sdk.py', | 58 'tools/create_sdk.py', |
| 59 ], | 59 ], |
| 60 'outputs': [ | 60 'outputs': [ |
| 61 '<(PRODUCT_DIR)/sdk', | 61 '<(PRODUCT_DIR)/dart-sdk', |
| 62 ], | 62 ], |
| 63 'action': [ | 63 'action': [ |
| 64 'python', | 64 'python', |
| 65 'tools/create_sdk.py', | 65 'tools/create_sdk.py', |
| 66 '<(PRODUCT_DIR)/sdk', | 66 '<(PRODUCT_DIR)/dart-sdk', |
| 67 ], | 67 ], |
| 68 'message': 'Creating SDK.', | 68 'message': 'Creating SDK.', |
| 69 }, | 69 }, |
| 70 ], | 70 ], |
| 71 }, | 71 }, |
| 72 { | 72 { |
| 73 'target_name': 'upload_sdk', | 73 'target_name': 'upload_sdk', |
| 74 'type': 'none', | 74 'type': 'none', |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 'create_sdk', | 76 'create_sdk', |
| 77 ], | 77 ], |
| 78 'actions': [ | 78 'actions': [ |
| 79 { | 79 { |
| 80 'action_name': 'upload_sdk_py', | 80 'action_name': 'upload_sdk_py', |
| 81 'inputs': [ | 81 'inputs': [ |
| 82 '<(PRODUCT_DIR)/sdk', | 82 '<(PRODUCT_DIR)/dart-sdk', |
| 83 'tools/upload_sdk.py', | 83 'tools/upload_sdk.py', |
| 84 ], | 84 ], |
| 85 'outputs': [ | 85 'outputs': [ |
| 86 '<(PRODUCT_DIR)/upload_sdk', | 86 '<(PRODUCT_DIR)/upload_sdk', |
| 87 ], | 87 ], |
| 88 'action': [ | 88 'action': [ |
| 89 'python', | 89 'python', |
| 90 'tools/upload_sdk.py', | 90 'tools/upload_sdk.py', |
| 91 '<(PRODUCT_DIR)/sdk' | 91 '<(PRODUCT_DIR)/dart-sdk' |
| 92 ], | 92 ], |
| 93 }, | 93 }, |
| 94 ], | 94 ], |
| 95 } | 95 } |
| 96 # TODO(ngeoffray): Fling does not have proper dependencies, | 96 # TODO(ngeoffray): Fling does not have proper dependencies, |
| 97 # so don't build it for now. | 97 # so don't build it for now. |
| 98 #{ | 98 #{ |
| 99 # 'target_name': 'client', | 99 # 'target_name': 'client', |
| 100 # 'type': 'none', | 100 # 'type': 'none', |
| 101 # 'dependencies': [ | 101 # 'dependencies': [ |
| 102 # 'client/dart.gyp:fling', | 102 # 'client/dart.gyp:fling', |
| 103 # ], | 103 # ], |
| 104 #}, | 104 #}, |
| 105 ], | 105 ], |
| 106 } | 106 } |
| OLD | NEW |