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

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

Issue 23054008: Remove the Path class from dart:io (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fixes Created 7 years, 4 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 '../../sdk/lib/_internal/libraries.dart', 45 '../../sdk/lib/_internal/libraries.dart',
46 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib/_internal/compiler", "../../runtime/lib", "../../sdk/lib/_internal/dartdoc"] )', 46 '<!@(["python", "../../tools/list_files.py", "\\.dart$", "../../sdk/ lib/_internal/compiler", "../../runtime/lib", "../../sdk/lib/_internal/dartdoc"] )',
47 'create_snapshot.dart', 47 'create_snapshot.dart',
48 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp', 48 '<(SHARED_INTERMEDIATE_DIR)/packages.stamp',
49 ], 49 ],
50 'outputs': [ 50 'outputs': [
51 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot', 51 '<(SHARED_INTERMEDIATE_DIR)/utils_wrapper.dart.snapshot',
52 ], 52 ],
53 'action': [ 53 'action': [
54 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)', 54 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)dart<(EXECUTABLE_SUFFIX)',
55 '--package-root=<(PRODUCT_DIR)/packages/',
55 'create_snapshot.dart', 56 'create_snapshot.dart',
56 '--output_dir=<(SHARED_INTERMEDIATE_DIR)', 57 '--output_dir=<(SHARED_INTERMEDIATE_DIR)',
57 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt', 58 '--dart2js_main=sdk/lib/_internal/compiler/implementation/dart2js.da rt',
58 '--dartdoc_main=sdk/lib/_internal/dartdoc/bin/dartdoc.dart', 59 '--dartdoc_main=sdk/lib/_internal/dartdoc/bin/dartdoc.dart',
59 '--package_root=<(PRODUCT_DIR)/packages/', 60 '--package_root=<(PRODUCT_DIR)/packages/',
60 ], 61 ],
61 }, 62 },
62 ], 63 ],
63 }, 64 },
64 ], 65 ],
65 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698