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

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

Issue 9618018: Force non-Unicode build in all configurations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 'variables': { 6 'variables': {
7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc',
10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 'conditions': [ 218 'conditions': [
219 ['OS=="win"', { 219 ['OS=="win"', {
220 'sources/' : [ 220 'sources/' : [
221 ['exclude', 'fdutils.h'], 221 ['exclude', 'fdutils.h'],
222 ], 222 ],
223 # TODO(antonm): fix the implementation. 223 # TODO(antonm): fix the implementation.
224 # Current implementation accepts char* strings 224 # Current implementation accepts char* strings
225 # and therefore fails to compile once _UNICODE is 225 # and therefore fails to compile once _UNICODE is
226 # enabled. That should be addressed using -A 226 # enabled. That should be addressed using -A
227 # versions of functions and adding necessary conversions. 227 # versions of functions and adding necessary conversions.
228 'msvs_configuration_attributes': { 228 'configurations': {
229 'CharacterSet': '0', 229 'Common_Base': {
230 'msvs_configuration_attributes': {
231 'CharacterSet': '0',
232 },
233 },
230 }, 234 },
231 }], 235 }],
232 ['OS=="linux"', { 236 ['OS=="linux"', {
233 'link_settings': { 237 'link_settings': {
234 'libraries': [ 238 'libraries': [
235 '-ldl', 239 '-ldl',
236 ], 240 ],
237 }, 241 },
238 }], 242 }],
239 ], 243 ],
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 ], 438 ],
435 'defines': [ 439 'defines': [
436 'DART_SHARED_LIB', 440 'DART_SHARED_LIB',
437 ], 441 ],
438 }, 442 },
439 ], 443 ],
440 }], 444 }],
441 ], 445 ],
442 } 446 }
443 447
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