| Index: runtime/bin/bin.gypi
|
| diff --git a/runtime/bin/bin.gypi b/runtime/bin/bin.gypi
|
| index 2ea33d4cd617ed33a686f4f319d19987fe3fdc9b..27567b274ba43d328679bdc7082601e65528c2d4 100644
|
| --- a/runtime/bin/bin.gypi
|
| +++ b/runtime/bin/bin.gypi
|
| @@ -216,9 +216,19 @@
|
| ['exclude', '_test\\.(cc|h)$'],
|
| ],
|
| 'conditions': [
|
| - ['OS=="win"', {'sources/' : [
|
| - ['exclude', 'fdutils.h'],
|
| - ]}],
|
| + ['OS=="win"', {
|
| + 'sources/' : [
|
| + ['exclude', 'fdutils.h'],
|
| + ],
|
| + # TODO(antonm): fix the implementation.
|
| + # Current implementation accepts char* strings
|
| + # and therefore fails to compile once _UNICODE is
|
| + # enabled. That should be addressed using -A
|
| + # versions of functions and adding necessary conversions.
|
| + 'msvs_configuration_attributes': {
|
| + 'CharacterSet': '0',
|
| + },
|
| + }],
|
| ['OS=="linux"', {
|
| 'link_settings': {
|
| 'libraries': [
|
|
|