Index: dart.gyp |
=================================================================== |
--- dart.gyp (revision 30383) |
+++ dart.gyp (working copy) |
@@ -49,6 +49,7 @@ |
'runtime/dart-runtime.gyp:dart', |
'utils/compiler/compiler.gyp:dart2js', |
'utils/pub/pub.gyp:pub', |
+ 'utils/dartfmt/dartfmt.gyp:dartfmt', |
'analyzer', |
kustermann
2013/12/06 08:47:08
Why not depending on 'dartfmt' defined in this fil
pquitslund
2013/12/06 17:55:43
I was following the example of dart2js and pub. U
|
], |
'actions': [ |
@@ -63,6 +64,7 @@ |
'<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', |
'<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', |
'<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', |
+ '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', |
'tools/VERSION' |
], |
'outputs': [ |
@@ -119,6 +121,13 @@ |
], |
}, |
{ |
+ 'target_name': 'dartfmt', |
+ 'type': 'none', |
+ 'dependencies': [ |
+ 'utils/dartfmt/dartfmt.gyp:dartfmt', |
+ ], |
+ }, |
+ { |
# This is the target that is built on the dart2dart bots. |
# It must depend on anything that is required by dart2dart |
# tests. |