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

Side by Side Diff: dart.gyp

Issue 63363007: SDK build bits for dartfmt. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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 | tools/create_sdk.py » ('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': 'most', 8 'target_name': 'most',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 22 matching lines...) Expand all
33 'runtime/dart-runtime.gyp:sample_extension', 33 'runtime/dart-runtime.gyp:sample_extension',
34 ], 34 ],
35 }, 35 },
36 { 36 {
37 'target_name': 'create_sdk', 37 'target_name': 'create_sdk',
38 'type': 'none', 38 'type': 'none',
39 'dependencies': [ 39 'dependencies': [
40 'runtime/dart-runtime.gyp:dart', 40 'runtime/dart-runtime.gyp:dart',
41 'utils/compiler/compiler.gyp:dart2js', 41 'utils/compiler/compiler.gyp:dart2js',
42 'utils/pub/pub.gyp:pub', 42 'utils/pub/pub.gyp:pub',
43 'dartfmt',
43 'analyzer', 44 'analyzer',
44 ], 45 ],
45 'actions': [ 46 'actions': [
46 { 47 {
47 'action_name': 'create_sdk_py', 48 'action_name': 'create_sdk_py',
48 'inputs': [ 49 'inputs': [
49 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])', 50 '<!@(["python", "tools/list_files.py", "\\.dart$", "sdk/lib"])',
50 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', 51 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])',
51 'tools/create_sdk.py', 52 'tools/create_sdk.py',
52 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 53 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
53 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 54 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
54 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 55 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
55 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 56 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
56 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar', 57 '<(PRODUCT_DIR)/dartanalyzer/dartanalyzer.jar',
58 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
57 'tools/VERSION' 59 'tools/VERSION'
58 ], 60 ],
59 'outputs': [ 61 'outputs': [
60 '<(PRODUCT_DIR)/dart-sdk/README', 62 '<(PRODUCT_DIR)/dart-sdk/README',
61 ], 63 ],
62 'action': [ 64 'action': [
63 'python', 65 'python',
64 'tools/create_sdk.py', 66 'tools/create_sdk.py',
65 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', 67 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk',
66 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' 68 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/'
(...skipping 10 matching lines...) Expand all
77 ], 79 ],
78 }, 80 },
79 { 81 {
80 'target_name': 'analyzer', 82 'target_name': 'analyzer',
81 'type': 'none', 83 'type': 'none',
82 'dependencies': [ 84 'dependencies': [
83 'editor/analyzer.gyp:analyzer', 85 'editor/analyzer.gyp:analyzer',
84 ], 86 ],
85 }, 87 },
86 { 88 {
89 'target_name': 'dartfmt',
90 'type': 'none',
91 'dependencies': [
92 'utils/dartfmt/dartfmt.gyp:dartfmt',
93 ],
94 },
95 {
87 # This is the target that is built on the dart2dart bots. 96 # This is the target that is built on the dart2dart bots.
88 # It must depend on anything that is required by dart2dart 97 # It must depend on anything that is required by dart2dart
89 # tests. 98 # tests.
90 'target_name': 'dart2dart_bot', 99 'target_name': 'dart2dart_bot',
91 'type': 'none', 100 'type': 'none',
92 'dependencies': [ 101 'dependencies': [
93 'create_sdk', 102 'create_sdk',
94 'packages', 103 'packages',
95 ], 104 ],
96 }, 105 },
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 { 193 {
185 'target_name': 'try', 194 'target_name': 'try',
186 'type': 'none', 195 'type': 'none',
187 'dependencies': [ 196 'dependencies': [
188 'create_sdk', 197 'create_sdk',
189 'site/try/build_try.gyp:try_site', 198 'site/try/build_try.gyp:try_site',
190 ], 199 ],
191 }, 200 },
192 ], 201 ],
193 } 202 }
OLDNEW
« no previous file with comments | « no previous file | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698