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

Side by Side Diff: dart.gyp

Issue 9017034: Adding correct dependencies for upload_sdk for Windows. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 12 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # These variables are used in the creation of the .vcproj file on 7 # These variables are used in the creation of the .vcproj file on
8 # Windows. 8 # Windows.
9 'cygwin_dir': 'third_party/cygwin', 9 'cygwin_dir': 'third_party/cygwin',
10 }, 10 },
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'tools/create_sdk.py', 74 'tools/create_sdk.py',
75 '<(PRODUCT_DIR)/dart-sdk', 75 '<(PRODUCT_DIR)/dart-sdk',
76 ], 76 ],
77 'message': 'Creating SDK.', 77 'message': 'Creating SDK.',
78 }, 78 },
79 ], 79 ],
80 }, 80 },
81 { 81 {
82 'target_name': 'upload_sdk', 82 'target_name': 'upload_sdk',
83 'type': 'none', 83 'type': 'none',
84 'conditions': [
85 ['OS=="win"', {
86 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
87 }],
88 ],
84 'dependencies': [ 89 'dependencies': [
85 'create_sdk', 90 'create_sdk',
86 ], 91 ],
87 'actions': [ 92 'actions': [
88 { 93 {
89 'action_name': 'upload_sdk_py', 94 'action_name': 'upload_sdk_py',
90 'inputs': [ 95 'inputs': [
91 '<(PRODUCT_DIR)/dart-sdk', 96 '<(PRODUCT_DIR)/dart-sdk',
92 'tools/upload_sdk.py', 97 'tools/upload_sdk.py',
93 ], 98 ],
(...skipping 12 matching lines...) Expand all
106 # so don't build it for now. 111 # so don't build it for now.
107 #{ 112 #{
108 # 'target_name': 'client', 113 # 'target_name': 'client',
109 # 'type': 'none', 114 # 'type': 'none',
110 # 'dependencies': [ 115 # 'dependencies': [
111 # 'client/dart.gyp:fling', 116 # 'client/dart.gyp:fling',
112 # ], 117 # ],
113 #}, 118 #},
114 ], 119 ],
115 } 120 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698