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

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

Issue 116043013: Add a snapshot for docgen and use it in the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Everything except the strictly snapshot-related pulled out to a different CL Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 'variables': { 6 'variables': {
7 'dart_dir': '../..', 7 'dart_dir': '../..',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 16 matching lines...) Expand all
27 ], 27 ],
28 'outputs': [ 28 'outputs': [
29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 29 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
30 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 30 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
31 ], 31 ],
32 'action': [ 32 'action': [
33 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 33 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
34 'create_snapshot.dart', 34 'create_snapshot.dart',
35 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', 35 '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
36 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt', 36 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt',
37 '--dartdoc_main=sdk/lib/_internal/dartdoc/bin/dartdoc.dart', 37 '--dartdoc_main=sdk/lib/_internal/dartdoc/bin/dartdoc.dart',
ricow1 2014/01/21 00:52:16 remove dartdoc
38 '--docgen_main=pkg/docgen/bin/docgen.dart',
38 '--package_root=<(PRODUCT_DIR)/packages/', 39 '--package_root=<(PRODUCT_DIR)/packages/',
39 ], 40 ],
40 }, 41 },
41 ], 42 ],
42 }, 43 },
43 ], 44 ],
44 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698