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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 # Set to 1 to enable fast builds. | 105 # Set to 1 to enable fast builds. |
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. |
| 116 'has_valgrind%': '<!pymod_do_main(has_valgrind)', |
| 117 |
115 'test_isolation_mode%': 'noop', | 118 'test_isolation_mode%': 'noop', |
116 | 119 |
117 'conditions': [ | 120 'conditions': [ |
118 # Set default gomadir. | 121 # Set default gomadir. |
119 ['OS=="win"', { | 122 ['OS=="win"', { |
120 'gomadir': 'c:\\goma\\goma-win', | 123 'gomadir': 'c:\\goma\\goma-win', |
121 }, { | 124 }, { |
122 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', | 125 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', |
123 }], | 126 }], |
124 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and h
ost_arch!="s390" and host_arch!="s390x"', { | 127 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and h
ost_arch!="s390" and host_arch!="s390x"', { |
(...skipping 29 matching lines...) Expand all Loading... |
154 'sanitizer_coverage%': '<(sanitizer_coverage)', | 157 'sanitizer_coverage%': '<(sanitizer_coverage)', |
155 'use_custom_libcxx%': '<(use_custom_libcxx)', | 158 'use_custom_libcxx%': '<(use_custom_libcxx)', |
156 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)', | 159 'linux_use_bundled_gold%': '<(linux_use_bundled_gold)', |
157 'use_lto%': '<(use_lto)', | 160 'use_lto%': '<(use_lto)', |
158 'cfi_vptr%': '<(cfi_vptr)', | 161 'cfi_vptr%': '<(cfi_vptr)', |
159 'cfi_diag%': '<(cfi_diag)', | 162 'cfi_diag%': '<(cfi_diag)', |
160 'cfi_blacklist%': '<(cfi_blacklist)', | 163 'cfi_blacklist%': '<(cfi_blacklist)', |
161 'test_isolation_mode%': '<(test_isolation_mode)', | 164 'test_isolation_mode%': '<(test_isolation_mode)', |
162 'fastbuild%': '<(fastbuild)', | 165 'fastbuild%': '<(fastbuild)', |
163 'coverage%': '<(coverage)', | 166 'coverage%': '<(coverage)', |
| 167 'has_valgrind%': '<(has_valgrind)', |
164 | 168 |
165 # Add a simple extras solely for the purpose of the cctests | 169 # Add a simple extras solely for the purpose of the cctests |
166 'v8_extra_library_files': ['../test/cctest/test-extra.js'], | 170 'v8_extra_library_files': ['../test/cctest/test-extra.js'], |
167 'v8_experimental_extra_library_files': ['../test/cctest/test-experimental-ex
tra.js'], | 171 'v8_experimental_extra_library_files': ['../test/cctest/test-experimental-ex
tra.js'], |
168 | 172 |
169 # .gyp files or targets should set v8_code to 1 if they build V8 specific | 173 # .gyp files or targets should set v8_code to 1 if they build V8 specific |
170 # code, as opposed to external code. This variable is used to control such | 174 # code, as opposed to external code. This variable is used to control such |
171 # things as the set of warnings to enable, and whether warnings are treated | 175 # things as the set of warnings to enable, and whether warnings are treated |
172 # as errors. | 176 # as errors. |
173 'v8_code%': 0, | 177 'v8_code%': 0, |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1423 '-fsanitize=cfi-vcall', | 1427 '-fsanitize=cfi-vcall', |
1424 '-fsanitize=cfi-derived-cast', | 1428 '-fsanitize=cfi-derived-cast', |
1425 '-fsanitize=cfi-unrelated-cast', | 1429 '-fsanitize=cfi-unrelated-cast', |
1426 ], | 1430 ], |
1427 }], | 1431 }], |
1428 ], | 1432 ], |
1429 }, | 1433 }, |
1430 }], | 1434 }], |
1431 ], | 1435 ], |
1432 } | 1436 } |
OLD | NEW |