Chromium Code Reviews| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 42 'frog', | 42 'frog', |
| 43 'runtime', | 43 'runtime', |
| 44 ], | 44 ], |
| 45 'actions': [ | 45 'actions': [ |
| 46 { | 46 { |
| 47 'action_name': 'create_sdk', | 47 'action_name': 'create_sdk', |
| 48 'inputs': [ | 48 'inputs': [ |
| 49 'tools/create_sdk.py', | 49 'tools/create_sdk.py', |
| 50 ], | 50 ], |
| 51 'outputs': [ | 51 'outputs': [ |
| 52 'sdk', | 52 'sdk', |
|
Siggi Cherem (dart-lang)
2011/12/02 23:54:41
add PRODUCT_DIR here too :)
| |
| 53 ], | 53 ], |
| 54 'action': [ | 54 'action': [ |
| 55 'python', | 55 'python', |
| 56 'tools/create_sdk.py', | 56 'tools/create_sdk.py', |
| 57 '<(PRODUCT_DIR)/sdk' | |
| 57 ], | 58 ], |
| 58 'message': 'Creating SDK.', | 59 'message': 'Creating SDK.', |
| 59 }, | 60 }, |
| 60 ], | 61 ], |
| 61 }, | 62 }, |
| 62 # TODO(ngeoffray): Fling does not have proper dependencies, | 63 # TODO(ngeoffray): Fling does not have proper dependencies, |
| 63 # so don't build it for now. | 64 # so don't build it for now. |
| 64 #{ | 65 #{ |
| 65 # 'target_name': 'client', | 66 # 'target_name': 'client', |
| 66 # 'type': 'none', | 67 # 'type': 'none', |
| 67 # 'dependencies': [ | 68 # 'dependencies': [ |
| 68 # 'client/dart.gyp:fling', | 69 # 'client/dart.gyp:fling', |
| 69 # ], | 70 # ], |
| 70 #}, | 71 #}, |
| 71 ], | 72 ], |
| 72 } | 73 } |
| OLD | NEW |