| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 481 }], | 481 }], |
| 482 ['v8_optimized_debug==2', { | 482 ['v8_optimized_debug==2', { |
| 483 'Optimization': '2', | 483 'Optimization': '2', |
| 484 'InlineFunctionExpansion': '2', | 484 'InlineFunctionExpansion': '2', |
| 485 'EnableIntrinsicFunctions': 'true', | 485 'EnableIntrinsicFunctions': 'true', |
| 486 'FavorSizeOrSpeed': '0', | 486 'FavorSizeOrSpeed': '0', |
| 487 'StringPooling': 'true', | 487 'StringPooling': 'true', |
| 488 'BasicRuntimeChecks': '0', | 488 'BasicRuntimeChecks': '0', |
| 489 'conditions': [ | 489 'conditions': [ |
| 490 ['component=="shared_library"', { | 490 ['component=="shared_library"', { |
| 491 'RuntimeLibrary': '2', #/MD | 491 'RuntimeLibrary': '3', #/MDd |
| 492 }, { | 492 }, { |
| 493 'RuntimeLibrary': '0', #/MT | 493 'RuntimeLibrary': '1', #/MTd |
| 494 }], | 494 }], |
| 495 ['v8_target_arch=="x64"', { | 495 ['v8_target_arch=="x64"', { |
| 496 # TODO(2207): remove this option once the bug is fixed. | 496 # TODO(2207): remove this option once the bug is fixed. |
| 497 'WholeProgramOptimization': 'true', | 497 'WholeProgramOptimization': 'true', |
| 498 }], | 498 }], |
| 499 ], | 499 ], |
| 500 }], | 500 }], |
| 501 ], | 501 ], |
| 502 }, | 502 }, |
| 503 'VCLinkerTool': { | 503 'VCLinkerTool': { |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 'OptimizeReferences': '2', | 687 'OptimizeReferences': '2', |
| 688 'EnableCOMDATFolding': '2', | 688 'EnableCOMDATFolding': '2', |
| 689 }, | 689 }, |
| 690 }, | 690 }, |
| 691 }], # OS=="win" | 691 }], # OS=="win" |
| 692 ], # conditions | 692 ], # conditions |
| 693 }, # Release | 693 }, # Release |
| 694 }, # configurations | 694 }, # configurations |
| 695 }, # target_defaults | 695 }, # target_defaults |
| 696 } | 696 } |
| OLD | NEW |