| OLD | NEW |
| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 'builtin.h', | 209 'builtin.h', |
| 210 ], | 210 ], |
| 211 'includes': [ | 211 'includes': [ |
| 212 'builtin_impl_sources.gypi', | 212 'builtin_impl_sources.gypi', |
| 213 '../platform/platform_sources.gypi', | 213 '../platform/platform_sources.gypi', |
| 214 ], | 214 ], |
| 215 'sources/': [ | 215 'sources/': [ |
| 216 ['exclude', '_test\\.(cc|h)$'], | 216 ['exclude', '_test\\.(cc|h)$'], |
| 217 ], | 217 ], |
| 218 'conditions': [ | 218 'conditions': [ |
| 219 ['OS=="win"', {'sources/' : [ | 219 ['OS=="win"', { |
| 220 ['exclude', 'fdutils.h'], | 220 'sources/' : [ |
| 221 ]}], | 221 ['exclude', 'fdutils.h'], |
| 222 ], |
| 223 # TODO(antonm): fix the implementation. |
| 224 # Current implementation accepts char* strings |
| 225 # and therefore fails to compile once _UNICODE is |
| 226 # enabled. That should be addressed using -A |
| 227 # versions of functions and adding necessary conversions. |
| 228 'msvs_configuration_attributes': { |
| 229 'CharacterSet': '0', |
| 230 }, |
| 231 }], |
| 222 ['OS=="linux"', { | 232 ['OS=="linux"', { |
| 223 'link_settings': { | 233 'link_settings': { |
| 224 'libraries': [ | 234 'libraries': [ |
| 225 '-ldl', | 235 '-ldl', |
| 226 ], | 236 ], |
| 227 }, | 237 }, |
| 228 }], | 238 }], |
| 229 ], | 239 ], |
| 230 }, | 240 }, |
| 231 { | 241 { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 ], | 434 ], |
| 425 'defines': [ | 435 'defines': [ |
| 426 'DART_SHARED_LIB', | 436 'DART_SHARED_LIB', |
| 427 ], | 437 ], |
| 428 }, | 438 }, |
| 429 ], | 439 ], |
| 430 }], | 440 }], |
| 431 ], | 441 ], |
| 432 } | 442 } |
| 433 | 443 |
| OLD | NEW |