| OLD | NEW |
| 1 # Copyright 2010 the V8 project authors. All rights reserved. | 1 # Copyright 2010 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 # LinkIncremental values: | 129 # LinkIncremental values: |
| 130 # 0 == default | 130 # 0 == default |
| 131 # 1 == /INCREMENTAL:NO | 131 # 1 == /INCREMENTAL:NO |
| 132 # 2 == /INCREMENTAL | 132 # 2 == /INCREMENTAL |
| 133 'LinkIncremental': '1', | 133 'LinkIncremental': '1', |
| 134 # SubSystem values: | 134 # SubSystem values: |
| 135 # 0 == not set | 135 # 0 == not set |
| 136 # 1 == /SUBSYSTEM:CONSOLE | 136 # 1 == /SUBSYSTEM:CONSOLE |
| 137 # 2 == /SUBSYSTEM:WINDOWS | 137 # 2 == /SUBSYSTEM:WINDOWS |
| 138 'SubSystem': '1', | 138 'SubSystem': '1', |
| 139 'conditions': [ |
| 140 ['target_arch=="x64"', { |
| 141 'StackReserveSize': '2097152', |
| 142 }], |
| 143 ], |
| 139 }, | 144 }, |
| 140 }, | 145 }, |
| 141 }, | 146 }, |
| 142 }], # OS=="win" | 147 }], # OS=="win" |
| 143 ['OS=="mac"', { | 148 ['OS=="mac"', { |
| 144 'target_defaults': { | 149 'target_defaults': { |
| 145 'xcode_settings': { | 150 'xcode_settings': { |
| 146 'ALWAYS_SEARCH_USER_PATHS': 'NO', | 151 'ALWAYS_SEARCH_USER_PATHS': 'NO', |
| 147 'GCC_C_LANGUAGE_STANDARD': 'ansi', # -ansi | 152 'GCC_C_LANGUAGE_STANDARD': 'ansi', # -ansi |
| 148 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks | 153 'GCC_CW_ASM_SYNTAX': 'NO', # No -fasm-blocks |
| (...skipping 25 matching lines...) Expand all Loading... |
| 174 }, | 179 }, |
| 175 'target_conditions': [ | 180 'target_conditions': [ |
| 176 ['_type!="static_library"', { | 181 ['_type!="static_library"', { |
| 177 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 182 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 178 }], | 183 }], |
| 179 ], # target_conditions | 184 ], # target_conditions |
| 180 }, # target_defaults | 185 }, # target_defaults |
| 181 }], # OS=="mac" | 186 }], # OS=="mac" |
| 182 ], | 187 ], |
| 183 } | 188 } |
| OLD | NEW |