| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'libraries': [ '-lbacktrace', '-lsocket', '-lm' ], | 256 'libraries': [ '-lbacktrace', '-lsocket', '-lm' ], |
| 257 }], | 257 }], |
| 258 ], | 258 ], |
| 259 }, | 259 }, |
| 260 }], # OS=="qnx" | 260 }], # OS=="qnx" |
| 261 ['OS=="win"', { | 261 ['OS=="win"', { |
| 262 'target_defaults': { | 262 'target_defaults': { |
| 263 'defines': [ | 263 'defines': [ |
| 264 '_CRT_SECURE_NO_DEPRECATE', | 264 '_CRT_SECURE_NO_DEPRECATE', |
| 265 '_CRT_NONSTDC_NO_DEPRECATE', | 265 '_CRT_NONSTDC_NO_DEPRECATE', |
| 266 '_USING_V110_SDK71_', |
| 266 ], | 267 ], |
| 267 'conditions': [ | 268 'conditions': [ |
| 268 ['component=="static_library"', { | 269 ['component=="static_library"', { |
| 269 'defines': [ | 270 'defines': [ |
| 270 '_HAS_EXCEPTIONS=0', | 271 '_HAS_EXCEPTIONS=0', |
| 271 ], | 272 ], |
| 272 }], | 273 }], |
| 273 ], | 274 ], |
| 274 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], | 275 'msvs_cygwin_dirs': ['<(DEPTH)/third_party/cygwin'], |
| 275 'msvs_disabled_warnings': [4355, 4800], | 276 'msvs_disabled_warnings': [4355, 4800], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 291 'ExceptionHandling': '1', # /EHsc | 292 'ExceptionHandling': '1', # /EHsc |
| 292 }, { | 293 }, { |
| 293 'ExceptionHandling': '0', | 294 'ExceptionHandling': '0', |
| 294 }], | 295 }], |
| 295 ], | 296 ], |
| 296 }, | 297 }, |
| 297 'VCLibrarianTool': { | 298 'VCLibrarianTool': { |
| 298 'AdditionalOptions': ['/ignore:4221'], | 299 'AdditionalOptions': ['/ignore:4221'], |
| 299 }, | 300 }, |
| 300 'VCLinkerTool': { | 301 'VCLinkerTool': { |
| 302 'MinimumRequiredVersion': '5.01', # XP. |
| 301 'AdditionalDependencies': [ | 303 'AdditionalDependencies': [ |
| 302 'ws2_32.lib', | 304 'ws2_32.lib', |
| 303 ], | 305 ], |
| 304 'GenerateDebugInformation': 'true', | 306 'GenerateDebugInformation': 'true', |
| 305 'MapFileName': '$(OutDir)\\$(TargetName).map', | 307 'MapFileName': '$(OutDir)\\$(TargetName).map', |
| 306 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', | 308 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', |
| 307 'FixedBaseAddress': '1', | 309 'FixedBaseAddress': '1', |
| 308 # LinkIncremental values: | 310 # LinkIncremental values: |
| 309 # 0 == default | 311 # 0 == default |
| 310 # 1 == /INCREMENTAL:NO | 312 # 1 == /INCREMENTAL:NO |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 ], | 378 ], |
| 377 'target_conditions': [ | 379 'target_conditions': [ |
| 378 ['_type!="static_library"', { | 380 ['_type!="static_library"', { |
| 379 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 381 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 380 }], | 382 }], |
| 381 ], # target_conditions | 383 ], # target_conditions |
| 382 }, # target_defaults | 384 }, # target_defaults |
| 383 }], # OS=="mac" | 385 }], # OS=="mac" |
| 384 ], | 386 ], |
| 385 } | 387 } |
| OLD | NEW |