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

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

Issue 16387004: Roll back 16364004 and 16206027. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
« no previous file with comments | « sdk/lib/_internal/dartdoc/lib/dartdoc.dart ('k') | utils/compiler/create_snapshot.dart » ('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) 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 {
11 'target_name': 'dart2js', 11 'target_name': 'dart2js',
12 'type': 'none', 12 'type': 'none',
13 'dependencies': [ 13 'dependencies': [
14 '../../runtime/dart-runtime.gyp:dart', 14 '../../runtime/dart-runtime.gyp:dart',
15 ], 15 ],
16 'actions': [ 16 'actions': [
17 { 17 {
18 'action_name': 'generate_dart2js_snapshot', 18 'action_name': 'generate_dart2js_snapshot',
19 'inputs': [ 19 'inputs': [
20 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 20 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
21 '../../sdk/lib/_internal/libraries.dart', 21 '../../sdk/lib/_internal/libraries.dart',
22 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib/_internal/compiler", "../../runtime/lib", "../../sdk/lib/_internal/dartdoc"] )', 22 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib/_internal/compiler", "../../runtime/lib"])',
23 'create_snapshot.dart',
24 ], 23 ],
25 'outputs': [ 24 'outputs': [
26 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 25 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
27 ], 26 ],
28 'action': [ 27 'action': [
29 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 28 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
30 'create_snapshot.dart', 29 'create_snapshot.dart',
31 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', 30 '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
32 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt', 31 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt',
33 '--dartdoc_main=sdk/lib/_internal/dartdoc/bin/dartdoc.dart',
34 '--package_root=<(PRODUCT_DIR)/packages/',
35 ], 32 ],
36 }, 33 },
37 ], 34 ],
38 }, 35 },
39 ], 36 ],
40 } 37 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/dartdoc/lib/dartdoc.dart ('k') | utils/compiler/create_snapshot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698