| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 }, | 310 }, |
| 311 }, | 311 }, |
| 312 }], | 312 }], |
| 313 ], | 313 ], |
| 314 }], | 314 }], |
| 315 ], | 315 ], |
| 316 }, | 316 }, |
| 317 'conditions': [ | 317 'conditions': [ |
| 318 ['os_posix==1 and OS!="mac"', { | 318 ['os_posix==1 and OS!="mac"', { |
| 319 'target_defaults': { | 319 'target_defaults': { |
| 320 'conditions': [ | 320 'conditions': [ |
| 321 # Common options for AddressSanitizer, LeakSanitizer, | 321 # Common options for AddressSanitizer, LeakSanitizer, |
| 322 # ThreadSanitizer and MemorySanitizer. | 322 # ThreadSanitizer and MemorySanitizer. |
| 323 ['asan==1 or lsan==1 or tsan==1 or msan==1', { | 323 ['asan==1 or lsan==1 or tsan==1 or msan==1', { |
| 324 'target_conditions': [ | 324 'target_conditions': [ |
| 325 ['_toolset=="target"', { | 325 ['_toolset=="target"', { |
| 326 'cflags': [ | 326 'cflags': [ |
| 327 '-fno-omit-frame-pointer', | 327 '-fno-omit-frame-pointer', |
| 328 '-gline-tables-only', | 328 '-gline-tables-only', |
| 329 ], | 329 ], |
| 330 'cflags!': [ | 330 'cflags!': [ |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 727 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 727 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 728 'make_global_settings': [ | 728 'make_global_settings': [ |
| 729 ['CC_wrapper', '<(gomadir)/gomacc'], | 729 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 730 ['CXX_wrapper', '<(gomadir)/gomacc'], | 730 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 731 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 731 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 732 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 732 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 733 ], | 733 ], |
| 734 }], | 734 }], |
| 735 ], | 735 ], |
| 736 } | 736 } |
| OLD | NEW |