| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 | 375 |
| 376 # Default MIPS variable settings. | 376 # Default MIPS variable settings. |
| 377 'mips_arch_variant%': 'r2', | 377 'mips_arch_variant%': 'r2', |
| 378 # Possible values fp32, fp64, fpxx. | 378 # Possible values fp32, fp64, fpxx. |
| 379 # fp32 - 32 32-bit FPU registers are available, doubles are placed in | 379 # fp32 - 32 32-bit FPU registers are available, doubles are placed in |
| 380 # register pairs. | 380 # register pairs. |
| 381 # fp64 - 32 64-bit FPU registers are available. | 381 # fp64 - 32 64-bit FPU registers are available. |
| 382 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime | 382 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime |
| 383 # detection | 383 # detection |
| 384 'mips_fpu_mode%': 'fp32', | 384 'mips_fpu_mode%': 'fp32', |
| 385 | |
| 386 # Indicates if gcmole tools are downloaded by a hook. | |
| 387 'gcmole%': 0, | |
| 388 }, | 385 }, |
| 389 'target_defaults': { | 386 'target_defaults': { |
| 390 'variables': { | 387 'variables': { |
| 391 'v8_code%': '<(v8_code)', | 388 'v8_code%': '<(v8_code)', |
| 392 'clang_warning_flags': [ | 389 'clang_warning_flags': [ |
| 393 # TODO(thakis): https://crbug.com/604888 | 390 # TODO(thakis): https://crbug.com/604888 |
| 394 '-Wno-undefined-var-template', | 391 '-Wno-undefined-var-template', |
| 395 ], | 392 ], |
| 396 'conditions':[ | 393 'conditions':[ |
| 397 ['OS=="android"', { | 394 ['OS=="android"', { |
| (...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 '-fsanitize=cfi-vcall', | 1427 '-fsanitize=cfi-vcall', |
| 1431 '-fsanitize=cfi-derived-cast', | 1428 '-fsanitize=cfi-derived-cast', |
| 1432 '-fsanitize=cfi-unrelated-cast', | 1429 '-fsanitize=cfi-unrelated-cast', |
| 1433 ], | 1430 ], |
| 1434 }], | 1431 }], |
| 1435 ], | 1432 ], |
| 1436 }, | 1433 }, |
| 1437 }], | 1434 }], |
| 1438 ], | 1435 ], |
| 1439 } | 1436 } |
| OLD | NEW |