Chromium Code Reviews| 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 371 | 371 |
| 372 # Default MIPS variable settings. | 372 # Default MIPS variable settings. |
| 373 'mips_arch_variant%': 'r2', | 373 'mips_arch_variant%': 'r2', |
| 374 # Possible values fp32, fp64, fpxx. | 374 # Possible values fp32, fp64, fpxx. |
| 375 # fp32 - 32 32-bit FPU registers are available, doubles are placed in | 375 # fp32 - 32 32-bit FPU registers are available, doubles are placed in |
| 376 # register pairs. | 376 # register pairs. |
| 377 # fp64 - 32 64-bit FPU registers are available. | 377 # fp64 - 32 64-bit FPU registers are available. |
| 378 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime | 378 # fpxx - compatibility mode, it chooses fp32 or fp64 depending on runtime |
| 379 # detection | 379 # detection |
| 380 'mips_fpu_mode%': 'fp32', | 380 'mips_fpu_mode%': 'fp32', |
| 381 | |
| 382 # Indicates if gcmole tools are downloaded by a hook. | |
| 383 'gcmole%': 0, | |
|
kjellander_chromium
2016/02/17 09:53:14
It's not obvious by the name. What about has_gcmol
Michael Achenbach
2016/02/17 09:58:03
It already is here:
https://codereview.chromium.or
| |
| 381 }, | 384 }, |
| 382 'target_defaults': { | 385 'target_defaults': { |
| 383 'variables': { | 386 'variables': { |
| 384 'v8_code%': '<(v8_code)', | 387 'v8_code%': '<(v8_code)', |
| 385 'conditions':[ | 388 'conditions':[ |
| 386 ['OS=="android"', { | 389 ['OS=="android"', { |
| 387 'host_os%': '<(host_os)', | 390 'host_os%': '<(host_os)', |
| 388 }], | 391 }], |
| 389 ], | 392 ], |
| 390 }, | 393 }, |
| (...skipping 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1364 '-fsanitize=cfi-vcall', | 1367 '-fsanitize=cfi-vcall', |
| 1365 '-fsanitize=cfi-derived-cast', | 1368 '-fsanitize=cfi-derived-cast', |
| 1366 '-fsanitize=cfi-unrelated-cast', | 1369 '-fsanitize=cfi-unrelated-cast', |
| 1367 ], | 1370 ], |
| 1368 }], | 1371 }], |
| 1369 ], | 1372 ], |
| 1370 }, | 1373 }, |
| 1371 }], | 1374 }], |
| 1372 ], | 1375 ], |
| 1373 } | 1376 } |
| OLD | NEW |