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

Side by Side Diff: dart/dart.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
1 # Copyright (c) 2011, 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 # These variables are used in the creation of the .vcproj file on 7 # These variables are used in the creation of the .vcproj file on
8 # Windows. 8 # Windows.
9 'cygwin_dir': 'third_party/cygwin', 9 'cygwin_dir': 'third_party/cygwin',
10 }, 10 },
11 'targets': [ 11 'targets': [
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 'outputs': [ 98 'outputs': [
99 '<(PRODUCT_DIR)/upload_sdk', 99 '<(PRODUCT_DIR)/upload_sdk',
100 ], 100 ],
101 'action': [ 101 'action': [
102 'python', 102 'python',
103 'tools/upload_sdk.py', 103 'tools/upload_sdk.py',
104 '<(PRODUCT_DIR)/dart-sdk' 104 '<(PRODUCT_DIR)/dart-sdk'
105 ], 105 ],
106 }, 106 },
107 ], 107 ],
108 } 108 },
109 {
110 'target_name': 'dart2js',
111 'type': 'none',
112 'dependencies': [
113 'runtime/dart-runtime.gyp:dart',
114 'utils/compiler/compiler.gyp:dart2js',
115 ],
116 },
109 ], 117 ],
110 } 118 }
OLDNEW
« no previous file with comments | « no previous file | dart/utils/compiler/build_helper.dart » ('j') | dart/utils/compiler/build_helper.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698