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

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

Issue 9704098: Add build rules for dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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
(Empty)
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
3 # BSD-style license that can be found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'dart2js',
9 'type': 'none',
10 'dependencies': [
11 '../../runtime/dart-runtime.gyp:dart',
12 ],
13 'actions': [
14 {
15 'action_name': 'build_dart2js',
16 'inputs': [
17 '<(PRODUCT_DIR)/dart',
18 'build_helper.dart',
19 ],
20 'outputs': [
21 '<(PRODUCT_DIR)/dart2js',
22 '<(PRODUCT_DIR)/dart2js_developer',
23 ],
24 'action': [
25 '<(PRODUCT_DIR)/dart',
26 'build_helper.dart',
27 '<(PRODUCT_DIR)',
28 'dart',
29 'dart2js',
30 'dart2js_developer',
31 ],
32 },
33 ],
34 },
35 ],
36 }
OLDNEW
« dart/utils/compiler/build_helper.dart ('K') | « dart/utils/compiler/build_helper.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698