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

Side by Side Diff: runtime/bin/bin.gypi

Issue 8472007: Fix gclient runhooks on Windows for a full checkout. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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 | runtime/tools/generate_projects.py » ('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 'builtin_in_cc_file': 'builtin_in.cc', 7 'builtin_in_cc_file': 'builtin_in.cc',
8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
9 'snapshot_in_cc_file': 'snapshot_in.cc', 9 'snapshot_in_cc_file': 'snapshot_in.cc',
10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin',
11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc', 11 'snapshot_cc_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.cc',
12 }, 12 },
13 'targets': [ 13 'targets': [
14 { 14 {
15 'target_name': 'generate_builtin_cc_file', 15 'target_name': 'generate_builtin_cc_file',
16 'type': 'none', 16 'type': 'none',
17 'conditions': [ 17 'conditions': [
18 ['OS=="win"', { 18 ['OS=="win"', {
19 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], 19 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
20 }], 20 }],
21 ], 21 ],
22 'sources': [ 22 'sources': [
23 'builtin.dart', 23 'builtin.dart',
24 'buffer_list.dart', 24 'buffer_list.dart',
25 'directory.dart', 25 'directory.dart',
26 'directory_impl.dart', 26 'directory_impl.dart',
27 'eventhandler.dart', 27 'eventhandler.dart',
28 'file.dart', 28 'file.dart',
29 'file_impl.dart', 29 'file_impl.dart',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 164 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
165 }, 165 },
166 }]], 166 }]],
167 }, 167 },
168 { 168 {
169 # Generate snapshot file. 169 # Generate snapshot file.
170 'target_name': 'generate_snapshot_file', 170 'target_name': 'generate_snapshot_file',
171 'type': 'none', 171 'type': 'none',
172 'conditions': [ 172 'conditions': [
173 ['OS=="win"', { 173 ['OS=="win"', {
174 'msvs_cygwin_dirs': ['<(DEPTH)/../third_party/cygwin'], 174 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'],
175 }], 175 }],
176 ], 176 ],
177 'dependencies': [ 177 'dependencies': [
178 'gen_snapshot_bin', 178 'gen_snapshot_bin',
179 ], 179 ],
180 'actions': [ 180 'actions': [
181 { 181 {
182 'action_name': 'generate_snapshot_file', 182 'action_name': 'generate_snapshot_file',
183 'inputs': [ 183 'inputs': [
184 '../tools/create_snapshot_file.py', 184 '../tools/create_snapshot_file.py',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 ]}], 368 ]}],
369 ['OS=="win"', { 369 ['OS=="win"', {
370 'link_settings': { 370 'link_settings': {
371 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 371 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
372 }, 372 },
373 }], 373 }],
374 ], 374 ],
375 }, 375 },
376 ], 376 ],
377 } 377 }
OLDNEW
« no previous file with comments | « no previous file | runtime/tools/generate_projects.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698