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

Side by Side Diff: create_sdk.gyp

Issue 1588093005: Build lib/_internal/analysis_summary during SDK build. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update to use the new build_sdk_summaries.dart script. Created 4 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
« 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) 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': [
(...skipping 23 matching lines...) Expand all
34 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])', 34 '<!@(["python", "tools/list_files.py", "", "sdk/bin"])',
35 'tools/create_sdk.py', 35 'tools/create_sdk.py',
36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
37 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 37 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
38 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 38 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
39 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot', 39 '<(SHARED_INTERMEDIATE_DIR)/pub.dart.snapshot',
40 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', 40 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot',
41 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', 41 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
42 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot', 42 '<(SHARED_INTERMEDIATE_DIR)/analysis_server.dart.snapshot',
43 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot', 43 '<(SHARED_INTERMEDIATE_DIR)/dartdoc.dart.snapshot',
44 '<(SHARED_INTERMEDIATE_DIR)/spec.sum',
45 '<(SHARED_INTERMEDIATE_DIR)/strong.sum',
44 'tools/VERSION' 46 'tools/VERSION'
45 ], 47 ],
46 'outputs': [ 48 'outputs': [
47 '<(PRODUCT_DIR)/dart-sdk/README', 49 '<(PRODUCT_DIR)/dart-sdk/README',
48 ], 50 ],
49 'action': [ 51 'action': [
50 'python', 52 'python',
51 'tools/create_sdk.py', 53 'tools/create_sdk.py',
52 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk', 54 '--sdk_output_dir', '<(PRODUCT_DIR)/dart-sdk',
53 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/' 55 '--snapshot_location', '<(SHARED_INTERMEDIATE_DIR)/'
54 ], 56 ],
55 'message': 'Creating SDK.', 57 'message': 'Creating SDK.',
56 }, 58 },
57 ], 59 ],
58 }, 60 },
59 ], 61 ],
60 } 62 }
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