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

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

Issue 9720033: More GYP tweaking. (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
« no previous file with comments | « no previous file | no next file » | 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'dart2js', 8 'target_name': 'dart2js',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 10 'dependencies': [
11 '../../runtime/dart-runtime.gyp:dart', 11 '../../runtime/dart-runtime.gyp:dart',
12 ], 12 ],
13 'actions': [ 13 'conditions': [
14 { 14 ['OS!="win"', {
15 'action_name': 'build_dart2js', 15 'actions': [
16 'inputs': [ 16 {
17 '<(PRODUCT_DIR)/dart', 17 'action_name': 'build_dart2js',
18 'build_helper.dart', 18 'inputs': [
19 ],
20 'outputs': [
21 '<(PRODUCT_DIR)/dart2js',
22 '<(PRODUCT_DIR)/dart2js_developer',
23 ],
24 'conditions': [
25 ['OS!="win"', {
26 'action': [
27 '<(PRODUCT_DIR)/dart', 19 '<(PRODUCT_DIR)/dart',
28 'build_helper.dart', 20 'build_helper.dart',
29 '<(PRODUCT_DIR)',
30 'dart',
31 'dart2js',
32 'dart2js_developer',
33 ], 21 ],
34 }], 22 'outputs': [
23 '<(PRODUCT_DIR)/dart2js',
24 '<(PRODUCT_DIR)/dart2js_developer',
25 ],
26 'action': [
ngeoffray 2012/03/19 08:17:49 extra indentation
27 '<(PRODUCT_DIR)/dart',
28 'build_helper.dart',
29 '<(PRODUCT_DIR)',
30 'dart',
31 'dart2js',
32 'dart2js_developer',
33 ],
34 },
35 ], 35 ],
36 }, 36 }],
37 ], 37 ],
38 }, 38 },
39 ], 39 ],
40 } 40 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698