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

Side by Side Diff: dart.gyp

Issue 8819030: Create the SDK in a temporary directory and copy it as a final step. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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 | tools/create_sdk.py » ('j') | tools/create_sdk.py » ('J')
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'compiler', 8 'target_name': 'compiler',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'action_name': 'create_sdk_py', 47 'action_name': 'create_sdk_py',
48 'inputs': [ 48 'inputs': [
49 'tools/create_sdk.py', 49 'tools/create_sdk.py',
50 ], 50 ],
51 'outputs': [ 51 'outputs': [
52 '<(PRODUCT_DIR)/sdk', 52 '<(PRODUCT_DIR)/sdk',
53 ], 53 ],
54 'action': [ 54 'action': [
55 'python', 55 'python',
56 'tools/create_sdk.py', 56 'tools/create_sdk.py',
57 '<(PRODUCT_DIR)/sdk' 57 '<(PRODUCT_DIR)/sdk',
58 ], 58 ],
59 'message': 'Creating SDK.', 59 'message': 'Creating SDK.',
60 }, 60 },
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 'target_name': 'upload_sdk', 64 'target_name': 'upload_sdk',
65 'type': 'none', 65 'type': 'none',
66 'dependencies': [ 66 'dependencies': [
67 'create_sdk', 67 'create_sdk',
(...skipping 20 matching lines...) Expand all
88 # so don't build it for now. 88 # so don't build it for now.
89 #{ 89 #{
90 # 'target_name': 'client', 90 # 'target_name': 'client',
91 # 'type': 'none', 91 # 'type': 'none',
92 # 'dependencies': [ 92 # 'dependencies': [
93 # 'client/dart.gyp:fling', 93 # 'client/dart.gyp:fling',
94 # ], 94 # ],
95 #}, 95 #},
96 ], 96 ],
97 } 97 }
OLDNEW
« no previous file with comments | « no previous file | tools/create_sdk.py » ('j') | tools/create_sdk.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698