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

Unified Diff: dart/dart.gyp

Issue 10273005: Fix dependencies for create and upload SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
« no previous file with comments | « no previous file | dart/tools/create_sdk.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/dart.gyp
diff --git a/dart/dart.gyp b/dart/dart.gyp
index 3ef1cef3df6369607de3a7616d67a6f2a72348ed..20548647473c946d4f67961f58a4adff6e3db6ef 100644
--- a/dart/dart.gyp
+++ b/dart/dart.gyp
@@ -22,14 +22,14 @@
],
},
{
- 'target_name': 'create_sdk',
+ 'target_name': 'sdk',
'type': 'none',
'dependencies': [
- 'runtime',
+ 'runtime/dart-runtime.gyp:dart',
],
'actions': [
{
- 'action_name': 'create_sdk_py',
+ 'action_name': 'create_sdk',
'inputs': [
'<!@(["python", "frog/scripts/list_frog_files.py", "frog"])',
# TODO(dgrove) - change these to dependencies and add dom
@@ -40,9 +40,10 @@
'lib/dom/src',
'frog/scripts/bootstrap/frogc',
'tools/create_sdk.py',
+ '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
],
'outputs': [
- '<(PRODUCT_DIR)/dart-sdk',
+ '<(PRODUCT_DIR)/dart-sdk/create.stamp',
],
'action': [
'python',
@@ -51,23 +52,14 @@
],
'message': 'Creating SDK.',
},
- ],
- },
- {
- 'target_name': 'upload_sdk',
- 'type': 'none',
- 'dependencies': [
- 'create_sdk',
- ],
- 'actions': [
{
- 'action_name': 'upload_sdk_py',
+ 'action_name': 'upload_sdk',
'inputs': [
- '<(PRODUCT_DIR)/dart-sdk',
+ '<(PRODUCT_DIR)/dart-sdk/create.stamp',
'tools/upload_sdk.py',
],
'outputs': [
- '<(PRODUCT_DIR)/upload_sdk',
+ '<(PRODUCT_DIR)/dart-sdk/upload.stamp',
],
'action': [
'python',
« no previous file with comments | « no previous file | dart/tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698