| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 'ldflags': ['-m32'], | 161 'ldflags': ['-m32'], |
| 162 }], | 162 }], |
| 163 ], | 163 ], |
| 164 }], | 164 }], |
| 165 ], | 165 ], |
| 166 }], | 166 }], |
| 167 ['v8_target_arch=="ia32"', { | 167 ['v8_target_arch=="ia32"', { |
| 168 'defines': [ | 168 'defines': [ |
| 169 'V8_TARGET_ARCH_IA32', | 169 'V8_TARGET_ARCH_IA32', |
| 170 ], | 170 ], |
| 171 'conditions': [ |
| 172 ['host_arch=="x64" and OS=="android"', { |
| 173 'target_conditions': [ |
| 174 ['_toolset=="host"', { |
| 175 'cflags': ['-m32'], |
| 176 'ldflags': ['-m32'], |
| 177 }], |
| 178 ], |
| 179 'defines': [ |
| 180 'V8_HOST_ARCH_IA32', |
| 181 ], |
| 182 }], |
| 183 ], |
| 171 }], | 184 }], |
| 172 ['v8_target_arch=="mips"', { | 185 ['v8_target_arch=="mips"', { |
| 173 'defines': [ | 186 'defines': [ |
| 174 'V8_TARGET_ARCH_MIPS', | 187 'V8_TARGET_ARCH_MIPS', |
| 175 ], | 188 ], |
| 176 'variables': { | 189 'variables': { |
| 177 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q
"^Target: mips-" && echo "yes" || echo "no")', | 190 'mipscompiler': '<!($(echo ${CXX:-$(which g++)}) -v 2>&1 | grep -q
"^Target: mips-" && echo "yes" || echo "no")', |
| 178 }, | 191 }, |
| 179 'conditions': [ | 192 'conditions': [ |
| 180 ['mipscompiler=="yes"', { | 193 ['mipscompiler=="yes"', { |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 # some test cases can cause stack overflow. | 427 # some test cases can cause stack overflow. |
| 415 # 'StackReserveSize': '297152', | 428 # 'StackReserveSize': '297152', |
| 416 }, | 429 }, |
| 417 }, | 430 }, |
| 418 }], # OS=="win" | 431 }], # OS=="win" |
| 419 ], # conditions | 432 ], # conditions |
| 420 }, # Release | 433 }, # Release |
| 421 }, # configurations | 434 }, # configurations |
| 422 }, # target_defaults | 435 }, # target_defaults |
| 423 } | 436 } |
| OLD | NEW |