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

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

Issue 2340813004: Revert "Use checked-in .package file for building and testing" (Closed)
Patch Set: Fix more test and build failures 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 | « utils/dartdoc/dartdoc.gyp ('k') | utils/pub/pub.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': 'dartfmt', 8 'target_name': 'dartfmt',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 '../../runtime/dart-runtime.gyp:dart', 11 '../../runtime/dart-runtime.gyp:dart',
12 '../../pkg/pkg.gyp:pkg_packages',
13 ], 12 ],
14 'actions': [ 13 'actions': [
15 { 14 {
16 'action_name': 'generate_dartfmt_snapshot', 15 'action_name': 'generate_dartfmt_snapshot',
17 'inputs': [ 16 'inputs': [
18 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 17 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
19 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart', 18 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
20 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 19 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
21 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../thir d_party/pkg_tested/dart_style"])', 20 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../thir d_party/pkg_tested/dart_style"])',
22 ], 21 ],
23 'outputs': [ 22 'outputs': [
24 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', 23 '<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
25 ], 24 ],
26 'action': [ 25 'action': [
27 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 26 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
28 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot', 27 '--snapshot=<(SHARED_INTERMEDIATE_DIR)/dartfmt.dart.snapshot',
29 '--package-root=<(PRODUCT_DIR)/packages/',
30 '../../third_party/pkg_tested/dart_style/bin/format.dart', 28 '../../third_party/pkg_tested/dart_style/bin/format.dart',
31 ], 29 ],
32 }, 30 },
33 ], 31 ],
34 }, 32 },
35 ], 33 ],
36 } 34 }
OLDNEW
« no previous file with comments | « utils/dartdoc/dartdoc.gyp ('k') | utils/pub/pub.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698