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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'configurations': { | 67 'configurations': { |
68 'Debug': { | 68 'Debug': { |
69 'defines': [ | 69 'defines': [ |
70 'DEBUG', | 70 'DEBUG', |
71 '_DEBUG', | 71 '_DEBUG', |
72 'ENABLE_DISASSEMBLER', | 72 'ENABLE_DISASSEMBLER', |
73 'V8_ENABLE_CHECKS' | 73 'V8_ENABLE_CHECKS' |
74 ], | 74 ], |
75 'msvs_settings': { | 75 'msvs_settings': { |
76 'VCCLCompilerTool': { | 76 'VCCLCompilerTool': { |
77 'Optimizations': '0', | 77 'Optimization': '0', |
78 | 78 |
79 'conditions': [ | 79 'conditions': [ |
80 ['OS=="win" and component=="shared_library"', { | 80 ['OS=="win" and component=="shared_library"', { |
81 'RuntimeLibrary': '3', # /MDd | 81 'RuntimeLibrary': '3', # /MDd |
82 }, { | 82 }, { |
83 'RuntimeLibrary': '1', # /MTd | 83 'RuntimeLibrary': '1', # /MTd |
84 }], | 84 }], |
85 ], | 85 ], |
86 }, | 86 }, |
87 'VCLinkerTool': { | 87 'VCLinkerTool': { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 }, | 127 }, |
128 }], | 128 }], |
129 ['OS=="win"', { | 129 ['OS=="win"', { |
130 'msvs_configuration_attributes': { | 130 'msvs_configuration_attributes': { |
131 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', | 131 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)', |
132 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', | 132 'IntermediateDirectory': '$(OutDir)\\obj\\$(ProjectName)', |
133 'CharacterSet': '1', | 133 'CharacterSet': '1', |
134 }, | 134 }, |
135 'msvs_settings': { | 135 'msvs_settings': { |
136 'VCCLCompilerTool': { | 136 'VCCLCompilerTool': { |
137 'Optimizations': '2', | 137 'Optimization': '2', |
138 'InlineFunctionExpansion': '2', | 138 'InlineFunctionExpansion': '2', |
139 'EnableIntrinsicFunctions': 'true', | 139 'EnableIntrinsicFunctions': 'true', |
140 'FavorSizeOrSpeed': '0', | 140 'FavorSizeOrSpeed': '0', |
141 'OmitFramePointers': 'true', | 141 'OmitFramePointers': 'true', |
142 'StringPooling': 'true', | 142 'StringPooling': 'true', |
143 | 143 |
144 'conditions': [ | 144 'conditions': [ |
145 ['OS=="win" and component=="shared_library"', { | 145 ['OS=="win" and component=="shared_library"', { |
146 'RuntimeLibrary': '2', #/MD | 146 'RuntimeLibrary': '2', #/MD |
147 }, { | 147 }, { |
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
808 ], | 808 ], |
809 'conditions': [ | 809 'conditions': [ |
810 ['OS=="win"', { | 810 ['OS=="win"', { |
811 # This could be gotten by not setting chromium_code, if that's OK. | 811 # This could be gotten by not setting chromium_code, if that's OK. |
812 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 812 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
813 }], | 813 }], |
814 ], | 814 ], |
815 }, | 815 }, |
816 ], | 816 ], |
817 } | 817 } |
OLD | NEW |