| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime | 446 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime |
| 447 # detection | 447 # detection |
| 448 'mips_fpu_mode%': 'fp32', | 448 'mips_fpu_mode%': 'fp32', |
| 449 }, | 449 }, |
| 450 'target_defaults': { | 450 'target_defaults': { |
| 451 'variables': { | 451 'variables': { |
| 452 'v8_code%': '<(v8_code)', | 452 'v8_code%': '<(v8_code)', |
| 453 'clang_warning_flags': [ | 453 'clang_warning_flags': [ |
| 454 # TODO(thakis): https://crbug.com/604888 | 454 # TODO(thakis): https://crbug.com/604888 |
| 455 '-Wno-undefined-var-template', | 455 '-Wno-undefined-var-template', |
| 456 # TODO(yangguo): issue 5258 |
| 457 '-Wno-nonportable-include-path', |
| 456 ], | 458 ], |
| 457 'conditions':[ | 459 'conditions':[ |
| 458 ['OS=="android"', { | 460 ['OS=="android"', { |
| 459 'host_os%': '<(host_os)', | 461 'host_os%': '<(host_os)', |
| 460 }], | 462 }], |
| 461 ], | 463 ], |
| 462 }, | 464 }, |
| 463 'includes': [ 'set_clang_warning_flags.gypi', ], | 465 'includes': [ 'set_clang_warning_flags.gypi', ], |
| 464 'default_configuration': 'Debug', | 466 'default_configuration': 'Debug', |
| 465 'configurations': { | 467 'configurations': { |
| (...skipping 1038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1504 '-fsanitize=cfi-vcall', | 1506 '-fsanitize=cfi-vcall', |
| 1505 '-fsanitize=cfi-derived-cast', | 1507 '-fsanitize=cfi-derived-cast', |
| 1506 '-fsanitize=cfi-unrelated-cast', | 1508 '-fsanitize=cfi-unrelated-cast', |
| 1507 ], | 1509 ], |
| 1508 }], | 1510 }], |
| 1509 ], | 1511 ], |
| 1510 }, | 1512 }, |
| 1511 }], | 1513 }], |
| 1512 ], | 1514 ], |
| 1513 } | 1515 } |
| OLD | NEW |