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

Unified Diff: sdk/lib/_internal/pub/pub.gyp

Issue 13966011: Put a snapshot of pub in the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
Index: sdk/lib/_internal/pub/pub.gyp
diff --git a/sdk/lib/_internal/pub/pub.gyp b/sdk/lib/_internal/pub/pub.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..f0fff01d9cc5a0f3df16b4bae3685f7de4663b45
--- /dev/null
+++ b/sdk/lib/_internal/pub/pub.gyp
@@ -0,0 +1,36 @@
+# Copyright (c) 2013, 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': 'pub',
+ 'type': 'none',
+ 'dependencies': [
+ '../../../../runtime/dart-runtime.gyp:dart',
+ ],
+ 'actions': [
+ {
+ 'action_name': 'generate_pub_snapshot',
+ 'inputs': [
+ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
+ '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "."])',
+ '../libraries.dart',
+ '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "../compiler"])',
+ '<!@(["python", "../../../../tools/list_files.py", "\\.dart$", "../../../../pkg"])',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
+ ],
+ 'action': [
+ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
+ '--package-root=<(PRODUCT_DIR)/packages/',
+ '--generate-script-snapshot=<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
+ 'bin/pub.dart',
+ ],
+ },
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698