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

Side by Side Diff: utils/dartanalyzer/dartanalyzer.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 | « tools/create_sdk.py ('k') | no next file » | 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': 'dartanalyzer', 8 'target_name': 'dartanalyzer',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
(...skipping 12 matching lines...) Expand all
23 'outputs': [ 23 'outputs': [
24 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', 24 '<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot',
25 ], 25 ],
26 'action': [ 26 'action': [
27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
28 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot', 28 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartanalyzer.dart.snapshot',
29 '--package-root=<(PRODUCT_DIR)/packages/', 29 '--package-root=<(PRODUCT_DIR)/packages/',
30 '../../pkg/analyzer_cli/bin/analyzer.dart', 30 '../../pkg/analyzer_cli/bin/analyzer.dart',
31 ], 31 ],
32 }, 32 },
33 {
34 'action_name': 'generate_summaries',
35 'inputs': [
36 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
37 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
38 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
39 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../pkg/ analyzer"])',
40 ],
41 'outputs': [
42 '<(SHARED_INTERMEDIATE_DIR)/spec.sum',
43 '<(SHARED_INTERMEDIATE_DIR)/strong.sum',
44 ],
45 'action': [
46 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
47 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart',
48 '<(SHARED_INTERMEDIATE_DIR)',
49 ],
50 },
33 ], 51 ],
34 }, 52 },
35 ], 53 ],
36 } 54 }
OLDNEW
« no previous file with comments | « tools/create_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698