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

Side by Side Diff: dart/dart.gyp

Issue 9454026: Skeleton dartdoc launcher. (Closed) Base URL: ssh://aaricia.aar/home/ahe/Dart/all/dart.googlecode.com.git@master
Patch Set: Created 8 years, 10 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
« no previous file with comments | « no previous file | dart/utils/dartdoc/build_helper.dart » ('j') | 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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 },
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'outputs': [ 99 'outputs': [
100 '<(PRODUCT_DIR)/upload_sdk', 100 '<(PRODUCT_DIR)/upload_sdk',
101 ], 101 ],
102 'action': [ 102 'action': [
103 'python', 103 'python',
104 'tools/upload_sdk.py', 104 'tools/upload_sdk.py',
105 '<(PRODUCT_DIR)/dart-sdk' 105 '<(PRODUCT_DIR)/dart-sdk'
106 ], 106 ],
107 }, 107 },
108 ], 108 ],
109 } 109 },
110 {
111 'target_name': 'dartdoc',
112 'type': 'none',
113 'dependencies': [
114 'runtime/dart-runtime.gyp:dart',
115 ],
116 'actions': [
117 {
118 'action_name': 'build_dartdoc',
119 'inputs': [
120 '<(PRODUCT_DIR)/dart',
121 'utils/dartdoc/build_helper.dart',
122 ],
123 'outputs': [
124 '<(PRODUCT_DIR)/dartdoc',
125 ],
126 'action': [
127 '<(PRODUCT_DIR)/dart',
128 'utils/dartdoc/build_helper.dart',
129 '<(PRODUCT_DIR)',
130 '<(PRODUCT_DIR)/dartdoc',
131 ],
132 },
133 ],
134 },
110 ], 135 ],
111 } 136 }
OLDNEW
« no previous file with comments | « no previous file | dart/utils/dartdoc/build_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698