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