| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ], | 97 ], |
| 98 }], | 98 }], |
| 99 ], | 99 ], |
| 100 'cflags_cc': [ | 100 'cflags_cc': [ |
| 101 '-fno-rtti', | 101 '-fno-rtti', |
| 102 ], | 102 ], |
| 103 }], | 103 }], |
| 104 ['OS=="mac"', { | 104 ['OS=="mac"', { |
| 105 'xcode_settings': { | 105 'xcode_settings': { |
| 106 'GCC_OPTIMIZATION_LEVEL': '3', | 106 'GCC_OPTIMIZATION_LEVEL': '3', |
| 107 'OTHER_CFLAGS': [ '-fomit-frame-pointer' ], | |
| 108 }, | 107 }, |
| 109 }], | 108 }], |
| 110 ['OS=="win"', { | 109 ['OS=="win"', { |
| 111 'msvs_configuration_attributes': { | 110 'msvs_configuration_attributes': { |
| 112 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 111 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', |
| 113 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 112 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 114 'CharacterSet': '1', | 113 'CharacterSet': '1', |
| 115 }, | 114 }, |
| 116 'msvs_settings': { | 115 'msvs_settings': { |
| 117 'VCCLCompilerTool': { | 116 'VCCLCompilerTool': { |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 ], | 580 ], |
| 582 'conditions': [ | 581 'conditions': [ |
| 583 [ 'OS=="win"', { | 582 [ 'OS=="win"', { |
| 584 # This could be gotten by not setting chromium_code, if that's OK. | 583 # This could be gotten by not setting chromium_code, if that's OK. |
| 585 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 584 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 586 }], | 585 }], |
| 587 ], | 586 ], |
| 588 }, | 587 }, |
| 589 ], | 588 ], |
| 590 } | 589 } |
| OLD | NEW |