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

Side by Side Diff: dart/dart.gyp

Issue 11411260: Correct snapshot location and fix a dependency problem. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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 | dart/sdk/bin/dart2js » ('j') | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 23 matching lines...) Expand all
34 'type': 'none', 34 'type': 'none',
35 'dependencies': [ 35 'dependencies': [
36 'runtime/dart-runtime.gyp:dart', 36 'runtime/dart-runtime.gyp:dart',
37 'utils/compiler/compiler.gyp:dart2js', 37 'utils/compiler/compiler.gyp:dart2js',
38 ], 38 ],
39 'actions': [ 39 'actions': [
40 { 40 {
41 'action_name': 'create_sdk_py', 41 'action_name': 'create_sdk_py',
42 'inputs': [ 42 'inputs': [
43 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', 43 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])',
44 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])',
44 'tools/create_sdk.py', 45 'tools/create_sdk.py',
45 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
46 '<(PRODUCT_DIR)/dart2js', 47 '<(PRODUCT_DIR)/dart2js',
47 '<(PRODUCT_DIR)/dart2js.bat', 48 '<(PRODUCT_DIR)/dart2js.bat',
48 ], 49 ],
49 'outputs': [ 50 'outputs': [
50 '<(PRODUCT_DIR)/dart-sdk/README', 51 '<(PRODUCT_DIR)/dart-sdk/README',
51 ], 52 ],
52 'action': [ 53 'action': [
53 'python', 54 'python',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 }, 135 },
135 { 136 {
136 'target_name': 'packages', 137 'target_name': 'packages',
137 'type': 'none', 138 'type': 'none',
138 'dependencies': [ 139 'dependencies': [
139 'pkg/pkg.gyp:pkg_packages', 140 'pkg/pkg.gyp:pkg_packages',
140 ], 141 ],
141 }, 142 },
142 ], 143 ],
143 } 144 }
OLDNEW
« no previous file with comments | « no previous file | dart/sdk/bin/dart2js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698