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

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

Issue 1212513002: sdk files reorganization to make dart2js a proper package (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: renamed Created 5 years, 5 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
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 '../../pkg/pkg.gyp:pkg_packages', 15 '../../pkg/pkg.gyp:pkg_packages',
16 'dart2js_files_stamp', 16 'dart2js_files_stamp',
17 ], 17 ],
18 'actions': [ 18 'actions': [
19 { 19 {
20 'action_name': 'generate_snapshots', 20 'action_name': 'generate_snapshots',
21 'inputs': [ 21 'inputs': [
22 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 22 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
23 '../../sdk/lib/_internal/libraries.dart', 23 '../../sdk/lib/_internal/sdk_library_metadata/lib/libraries.dart',
24 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../runt ime/lib", "../../sdk/lib/_internal/dartdoc"])', 24 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../runt ime/lib", "../../sdk/lib/_internal/dartdoc"])',
25 'create_snapshot.dart', 25 'create_snapshot.dart',
26 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp', 26 '<(SHARED_INTERMEDIATE_DIR)/dart2js_files.stamp',
27 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 27 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
28 '../../tools/VERSION', 28 '../../tools/VERSION',
29 ], 29 ],
30 'outputs': [ 30 'outputs': [
31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 31 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot', 32 '<(SHARED_INTERMEDIATE_DIR)/dart2js.dart.snapshot',
33 ], 33 ],
(...skipping 28 matching lines...) Expand all
62 ], 62 ],
63 'action': [ 63 'action': [
64 'python', '../../tools/create_timestamp_file.py', 64 'python', '../../tools/create_timestamp_file.py',
65 '<@(_outputs)', 65 '<@(_outputs)',
66 ], 66 ],
67 }, 67 },
68 ], 68 ],
69 } 69 }
70 ], 70 ],
71 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698