| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 385 |
| 386 # Indicates if gcmole tools are downloaded by a hook. | 386 # Indicates if gcmole tools are downloaded by a hook. |
| 387 'gcmole%': 0, | 387 'gcmole%': 0, |
| 388 }, | 388 }, |
| 389 'target_defaults': { | 389 'target_defaults': { |
| 390 'variables': { | 390 'variables': { |
| 391 'v8_code%': '<(v8_code)', | 391 'v8_code%': '<(v8_code)', |
| 392 'clang_warning_flags': [], | 392 'clang_warning_flags': [ |
| 393 # TODO(thakis): https://crbug.com/604888 |
| 394 '-Wno-undefined-var-template', |
| 395 ], |
| 393 'conditions':[ | 396 'conditions':[ |
| 394 ['OS=="android"', { | 397 ['OS=="android"', { |
| 395 'host_os%': '<(host_os)', | 398 'host_os%': '<(host_os)', |
| 396 }], | 399 }], |
| 397 ], | 400 ], |
| 398 }, | 401 }, |
| 399 'includes': [ 'set_clang_warning_flags.gypi', ], | 402 'includes': [ 'set_clang_warning_flags.gypi', ], |
| 400 'default_configuration': 'Debug', | 403 'default_configuration': 'Debug', |
| 401 'configurations': { | 404 'configurations': { |
| 402 'DebugBaseCommon': { | 405 'DebugBaseCommon': { |
| (...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1442 '-fsanitize=cfi-vcall', | 1445 '-fsanitize=cfi-vcall', |
| 1443 '-fsanitize=cfi-derived-cast', | 1446 '-fsanitize=cfi-derived-cast', |
| 1444 '-fsanitize=cfi-unrelated-cast', | 1447 '-fsanitize=cfi-unrelated-cast', |
| 1445 ], | 1448 ], |
| 1446 }], | 1449 }], |
| 1447 ], | 1450 ], |
| 1448 }, | 1451 }, |
| 1449 }], | 1452 }], |
| 1450 ], | 1453 ], |
| 1451 } | 1454 } |
| OLD | NEW |