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

Unified Diff: utils/dartdevc/dartdevc.gyp

Issue 1777173003: Add dev_compiler to the SDK build process. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Rename dev_compiler -> dartdevc 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 | « tools/create_sdk.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/dartdevc/dartdevc.gyp
diff --git a/utils/dartfmt/dartfmt.gyp b/utils/dartdevc/dartdevc.gyp
similarity index 64%
copy from utils/dartfmt/dartfmt.gyp
copy to utils/dartdevc/dartdevc.gyp
index 62b890614a94999a7f8848a8573381fd36d46928..1be007befe0bd9e6bb13461e37b061496644a97c 100644
--- a/utils/dartfmt/dartfmt.gyp
+++ b/utils/dartdevc/dartdevc.gyp
@@ -1,11 +1,11 @@
-# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+# Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
# 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.
{
'targets': [
{
- 'target_name': 'dartfmt',
+ 'target_name': 'dartdevc',
'type': 'none',
'dependencies': [
'../../runtime/dart-runtime.gyp:dart',
@@ -13,21 +13,22 @@
],
'actions': [
{
- 'action_name': 'generate_dartfmt_snapshot',
+ 'action_name': 'generate_dartdevc_snapshot',
'inputs': [
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
'../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
'<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
- '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../third_party/pkg_tested/dart_style"])',
+ '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../third_party/pkg/dev_compiler"])',
+ '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../pkg/analyzer"])',
],
'outputs': [
- '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
+ '<(SHARED_INTERMEDIATE_DIR)/dartdevc.dart.snapshot',
],
'action': [
'<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
- '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
+ '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartdevc.dart.snapshot',
'--package-root=<(PRODUCT_DIR)/packages/',
- '../../third_party/pkg_tested/dart_style/bin/format.dart',
+ '../../third_party/pkg/dev_compiler/bin/dartdevc.dart'
],
},
],
« no previous file with comments | « tools/create_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698