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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 # TODO(machenbach): Only configured for windows. | 106 # TODO(machenbach): Only configured for windows. |
107 'fastbuild%': 0, | 107 'fastbuild%': 0, |
108 | 108 |
109 # goma settings. | 109 # goma settings. |
110 # 1 to use goma. | 110 # 1 to use goma. |
111 # If no gomadir is set, it uses the default gomadir. | 111 # If no gomadir is set, it uses the default gomadir. |
112 'use_goma%': 0, | 112 'use_goma%': 0, |
113 'gomadir%': '', | 113 'gomadir%': '', |
114 | 114 |
115 # Check if valgrind directories are present. | 115 # Check if valgrind directories are present. |
116 'has_valgrind%': '<!pymod_do_main(has_valgrind)', | 116 'has_valgrind%': 0, |
117 | 117 |
118 'test_isolation_mode%': 'noop', | 118 'test_isolation_mode%': 'noop', |
119 | 119 |
120 'conditions': [ | 120 'conditions': [ |
121 # Set default gomadir. | 121 # Set default gomadir. |
122 ['OS=="win"', { | 122 ['OS=="win"', { |
123 'gomadir': 'c:\\goma\\goma-win', | 123 'gomadir': 'c:\\goma\\goma-win', |
124 }, { | 124 }, { |
125 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', | 125 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', |
126 }], | 126 }], |
(...skipping 1300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1427 '-fsanitize=cfi-vcall', | 1427 '-fsanitize=cfi-vcall', |
1428 '-fsanitize=cfi-derived-cast', | 1428 '-fsanitize=cfi-derived-cast', |
1429 '-fsanitize=cfi-unrelated-cast', | 1429 '-fsanitize=cfi-unrelated-cast', |
1430 ], | 1430 ], |
1431 }], | 1431 }], |
1432 ], | 1432 ], |
1433 }, | 1433 }, |
1434 }], | 1434 }], |
1435 ], | 1435 ], |
1436 } | 1436 } |
OLD | NEW |