Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1011)

Unified Diff: sdk/bin/dartdevc

Issue 1818543002: Add dev_compiler to the SDK build process. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart.gyp ('k') | sdk/bin/dartdevc.bat » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/bin/dartdevc
diff --git a/sdk/bin/dartanalyzer b/sdk/bin/dartdevc
similarity index 92%
copy from sdk/bin/dartanalyzer
copy to sdk/bin/dartdevc
index 8f2274ce362da4066fe54c0410ea51d35455d7a7..331eb4ef395921d893aa9a98cb8fe98c0be40907 100755
--- a/sdk/bin/dartanalyzer
+++ b/sdk/bin/dartdevc
@@ -3,7 +3,7 @@
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
-# Run dartanalyzer.dart on the Dart VM. This script assumes the Dart repo's
+# Run dev compiler on the Dart VM. This script assumes the Dart repo's
# directory structure.
function follow_links() {
@@ -43,7 +43,7 @@ fi
DART_ROOT="$(cd "${SDK_DIR}/.." ; pwd -P)"
-ANALYZER="$DART_ROOT/pkg/analyzer_cli/bin/analyzer.dart"
+DEV_COMPILER="$DART_ROOT/third_party/pkg/dev_compiler/bin/dartdevc.dart"
if [[ `uname` == 'Darwin' ]];
then
@@ -83,4 +83,4 @@ BUILD_DIR="$OUT_DIR$DART_CONFIGURATION"
PACKAGE_ROOT="$BUILD_DIR/packages/"
-exec "$DART" "${EXTRA_VM_OPTIONS[@]}" "--package-root=$PACKAGE_ROOT" "$ANALYZER" "$SDK_ARG" "$@"
+exec "$DART" "${EXTRA_VM_OPTIONS[@]}" "--package-root=$PACKAGE_ROOT" "$DEV_COMPILER" "$SDK_ARG" "$@"
« no previous file with comments | « dart.gyp ('k') | sdk/bin/dartdevc.bat » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698