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

Side by Side Diff: create_sdk.gyp

Issue 1818543002: Add dev_compiler to the SDK build process. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « DEPS ('k') | dart.gyp » ('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) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, 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': 'create_sdk_internal', 8 'target_name': 'create_sdk_internal',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 'runtime/dart-runtime.gyp:dart', 11 'runtime/dart-runtime.gyp:dart',
12 'utils/compiler/compiler.gyp:dart2js', 12 'utils/compiler/compiler.gyp:dart2js',
13 'utils/pub/pub.gyp:pub', 13 'utils/pub/pub.gyp:pub',
14 'utils/dartfmt/dartfmt.gyp:dartfmt', 14 'utils/dartfmt/dartfmt.gyp:dartfmt',
15 'utils/dartdoc/dartdoc.gyp:dartdoc', 15 'utils/dartdoc/dartdoc.gyp:dartdoc',
16 'utils/analysis_server/analysis_server.gyp:analysis_server', 16 'utils/analysis_server/analysis_server.gyp:analysis_server',
17 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer', 17 'utils/dartanalyzer/dartanalyzer.gyp:dartanalyzer',
18 'utils/dartdevc/dartdevc.gyp:dartdevc',
18 ], 19 ],
19 'actions': [ 20 'actions': [
20 { 21 {
21 'action_name': 'create_sdk_py', 22 'action_name': 'create_sdk_py',
22 'inputs': [ 23 'inputs': [
23 # Xcode can only handle a certain amount of files in one list 24 # Xcode can only handle a certain amount of files in one list
24 # (also depending on the length of the path from where you run). 25 # (also depending on the length of the path from where you run).
25 '<!@(["python", "tools/list_files.py",' 26 '<!@(["python", "tools/list_files.py",'
26 '"dart$",' 27 '"dart$",'
27 '"sdk/lib"])', 28 '"sdk/lib"])',
28 'sdk/lib/dart2dart.platform', 29 'sdk/lib/dart2dart.platform',
29 'sdk/lib/dart_client.platform', 30 'sdk/lib/dart_client.platform',
30 'sdk/lib/dart_server.platform', 31 'sdk/lib/dart_server.platform',
31 'sdk/lib/dart_shared.platform', 32 'sdk/lib/dart_shared.platform',
32 '<!@(["python", "tools/list_files.py", "", ' 33 '<!@(["python", "tools/list_files.py", "", '
33 '"sdk/lib/_internal/js_runtime/lib/preambles"])', 34 '"sdk/lib/_internal/js_runtime/lib/preambles"])',
34 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', 35 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])',
35 'tools/create_sdk.py', 36 'tools/create_sdk.py',
36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 37 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
37 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 38 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
38 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 39 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
39 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 40 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
40 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', 41 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot',
42 '<(SHARED_INTERMEDIATE_DIR)/dartdevc.dart.snapshot',
41 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', 43 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
42 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', 44 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot',
43 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', 45 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot',
44 '<(SHARED_INTERMEDIATE_DIR)/spec.sum', 46 '<(SHARED_INTERMEDIATE_DIR)/spec.sum',
45 '<(SHARED_INTERMEDIATE_DIR)/strong.sum', 47 '<(SHARED_INTERMEDIATE_DIR)/strong.sum',
46 'tools/VERSION' 48 'tools/VERSION'
47 ], 49 ],
48 'outputs': [ 50 'outputs': [
49 '<(PRODUCT_DIR)/dart-sdk/README', 51 '<(PRODUCT_DIR)/dart-sdk/README',
50 ], 52 ],
51 'action': [ 53 'action': [
52 'python', 54 'python',
53 'tools/create_sdk.py', 55 'tools/create_sdk.py',
54 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', 56 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk',
55 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' 57 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/'
56 ], 58 ],
57 'message': 'Creating SDK.', 59 'message': 'Creating SDK.',
58 }, 60 },
59 ], 61 ],
60 }, 62 },
61 ], 63 ],
62 } 64 }
OLDNEW
« no previous file with comments | « DEPS ('k') | dart.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698