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

Side by Side Diff: utils/dartanalyzer/dartanalyzer.gyp

Issue 2341303004: Fix dartanalyzer.gyp for SDK summary generation. (Closed)
Patch Set: Created 4 years, 3 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 | 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 20 matching lines...) Expand all
31 }, 31 },
32 { 32 {
33 'action_name': 'generate_summary_spec', 33 'action_name': 'generate_summary_spec',
34 'inputs': [ 34 'inputs': [
35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 35 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
36 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 36 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
37 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib"])', 37 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib"])',
38 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../pkg/ analyzer"])', 38 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../pkg/ analyzer"])',
39 ], 39 ],
40 'outputs': [ 40 'outputs': [
41 '<(SHARED_INTERMEDIATE_DIR)/sdk_summary_bundle.bin',
42 ],
43 'action': [
44 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
45 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart',
46 'single-output',
47 '<(SHARED_INTERMEDIATE_DIR)/sdk_summary_bundle.bin',
48 ],
49 },
50 {
51 'action_name': 'extract_spec_summary',
52 'inputs': [
53 '<(SHARED_INTERMEDIATE_DIR)/sdk_summary_bundle.bin',
54 ],
55 'outputs': [
56 '<(SHARED_INTERMEDIATE_DIR)/spec.sum', 41 '<(SHARED_INTERMEDIATE_DIR)/spec.sum',
57 ], 42 ],
58 'action': [ 43 'action': [
59 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 44 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
60 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart', 45 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart',
61 'build-spec', 46 'build-spec',
62 '<(SHARED_INTERMEDIATE_DIR)/spec.sum', 47 '<(SHARED_INTERMEDIATE_DIR)/spec.sum',
63 ], 48 ],
64 }, 49 },
65 { 50 {
(...skipping 11 matching lines...) Expand all
77 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 62 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
78 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart', 63 '../../pkg/analyzer/tool/summary/build_sdk_summaries.dart',
79 'build-strong', 64 'build-strong',
80 '<(SHARED_INTERMEDIATE_DIR)/strong.sum', 65 '<(SHARED_INTERMEDIATE_DIR)/strong.sum',
81 ], 66 ],
82 }, 67 },
83 ], 68 ],
84 }, 69 },
85 ], 70 ],
86 } 71 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698