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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 'v8_use_external_startup_data%': 1, | 231 'v8_use_external_startup_data%': 1, |
232 | 232 |
233 # Relative path to icu.gyp from this file. | 233 # Relative path to icu.gyp from this file. |
234 'icu_gyp_path': '../third_party/icu/icu.gyp', | 234 'icu_gyp_path': '../third_party/icu/icu.gyp', |
235 | 235 |
236 'conditions': [ | 236 'conditions': [ |
237 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 237 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
238 (v8_target_arch=="arm64" and host_arch!="arm64") or \ | 238 (v8_target_arch=="arm64" and host_arch!="arm64") or \ |
239 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 239 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
240 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ | 240 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ |
241 (v8_target_arch=="mips" and host_arch!="mips") or \ | |
242 (v8_target_arch=="x64" and host_arch!="x64") or \ | 241 (v8_target_arch=="x64" and host_arch!="x64") or \ |
243 (OS=="android" or OS=="qnx")', { | 242 (OS=="android" or OS=="qnx")', { |
244 'want_separate_host_toolset': 1, | 243 'want_separate_host_toolset': 1, |
245 }, { | 244 }, { |
246 'want_separate_host_toolset': 0, | 245 'want_separate_host_toolset': 0, |
247 }], | 246 }], |
| 247 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
| 248 (v8_target_arch=="arm64" and host_arch!="arm64") or \ |
| 249 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
| 250 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ |
| 251 (v8_target_arch=="mips" and host_arch!="mips") or \ |
| 252 (v8_target_arch=="mips64" and host_arch!="mips64") or \ |
| 253 (v8_target_arch=="x64" and host_arch!="x64") or \ |
| 254 (OS=="android" or OS=="qnx")', { |
| 255 'want_separate_host_toolset_mkpeephole': 1, |
| 256 }, { |
| 257 'want_separate_host_toolset_mkpeephole': 0, |
| 258 }], |
248 ['OS == "win"', { | 259 ['OS == "win"', { |
249 'os_posix%': 0, | 260 'os_posix%': 0, |
250 }, { | 261 }, { |
251 'os_posix%': 1, | 262 'os_posix%': 1, |
252 }], | 263 }], |
253 ['OS=="win" and use_goma==1', { | 264 ['OS=="win" and use_goma==1', { |
254 # goma doesn't support pch yet. | 265 # goma doesn't support pch yet. |
255 'chromium_win_pch': 0, | 266 'chromium_win_pch': 0, |
256 # goma doesn't support PDB yet. | 267 # goma doesn't support PDB yet. |
257 'fastbuild%': 1, | 268 'fastbuild%': 1, |
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1477 '-fsanitize=cfi-vcall', | 1488 '-fsanitize=cfi-vcall', |
1478 '-fsanitize=cfi-derived-cast', | 1489 '-fsanitize=cfi-derived-cast', |
1479 '-fsanitize=cfi-unrelated-cast', | 1490 '-fsanitize=cfi-unrelated-cast', |
1480 ], | 1491 ], |
1481 }], | 1492 }], |
1482 ], | 1493 ], |
1483 }, | 1494 }, |
1484 }], | 1495 }], |
1485 ], | 1496 ], |
1486 } | 1497 } |
OLD | NEW |