| 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' ], |
| 107 }, | 108 }, |
| 108 }], | 109 }], |
| 109 ['OS=="win"', { | 110 ['OS=="win"', { |
| 110 'msvs_configuration_attributes': { | 111 'msvs_configuration_attributes': { |
| 111 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 112 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', |
| 112 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 113 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
| 113 'CharacterSet': '1', | 114 'CharacterSet': '1', |
| 114 }, | 115 }, |
| 115 'msvs_settings': { | 116 'msvs_settings': { |
| 116 'VCCLCompilerTool': { | 117 'VCCLCompilerTool': { |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 ], | 581 ], |
| 581 'conditions': [ | 582 'conditions': [ |
| 582 [ 'OS=="win"', { | 583 [ 'OS=="win"', { |
| 583 # This could be gotten by not setting chromium_code, if that's OK. | 584 # This could be gotten by not setting chromium_code, if that's OK. |
| 584 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 585 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 585 }], | 586 }], |
| 586 ], | 587 ], |
| 587 }, | 588 }, |
| 588 ], | 589 ], |
| 589 } | 590 } |
| OLD | NEW |