| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |