| 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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', | 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', |
| 8 | 8 |
| 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', | 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', |
| 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', | 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 # enabled. That should be addressed using -A | 241 # enabled. That should be addressed using -A |
| 242 # versions of functions and adding necessary conversions. | 242 # versions of functions and adding necessary conversions. |
| 243 'configurations': { | 243 'configurations': { |
| 244 'Common_Base': { | 244 'Common_Base': { |
| 245 'msvs_configuration_attributes': { | 245 'msvs_configuration_attributes': { |
| 246 'CharacterSet': '0', | 246 'CharacterSet': '0', |
| 247 }, | 247 }, |
| 248 }, | 248 }, |
| 249 }, | 249 }, |
| 250 'link_settings': { | 250 'link_settings': { |
| 251 'libraries': [ '-liphlpapi.lib' ], | 251 'libraries': [ '-liphlpapi.lib', '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 252 }, | 252 }, |
| 253 }], | 253 }], |
| 254 ['OS=="mac"', { | 254 ['OS=="mac"', { |
| 255 'link_settings': { | 255 'link_settings': { |
| 256 'libraries': [ | 256 'libraries': [ |
| 257 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', | 257 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 258 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', | 258 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', |
| 259 ], | 259 ], |
| 260 }, | 260 }, |
| 261 }], | 261 }], |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 }], | 805 }], |
| 806 ['OS=="linux"', { | 806 ['OS=="linux"', { |
| 807 'cflags': [ | 807 'cflags': [ |
| 808 '-fPIC', | 808 '-fPIC', |
| 809 ], | 809 ], |
| 810 }], | 810 }], |
| 811 ], | 811 ], |
| 812 }, | 812 }, |
| 813 ], | 813 ], |
| 814 } | 814 } |
| OLD | NEW |