| 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'test_isolation_mode%': '<(test_isolation_mode)', | 199 'test_isolation_mode%': '<(test_isolation_mode)', |
| 200 'fastbuild%': '<(fastbuild)', | 200 'fastbuild%': '<(fastbuild)', |
| 201 'coverage%': '<(coverage)', | 201 'coverage%': '<(coverage)', |
| 202 'sysroot%': '<(sysroot)', | 202 'sysroot%': '<(sysroot)', |
| 203 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', | 203 'icu_use_data_file_flag%': '<(icu_use_data_file_flag)', |
| 204 | 204 |
| 205 # Add a simple extras solely for the purpose of the cctests | 205 # Add a simple extras solely for the purpose of the cctests |
| 206 'v8_extra_library_files': ['../test/cctest/test-extra.js'], | 206 'v8_extra_library_files': ['../test/cctest/test-extra.js'], |
| 207 'v8_experimental_extra_library_files': ['../test/cctest/test-experimental-ex
tra.js'], | 207 'v8_experimental_extra_library_files': ['../test/cctest/test-experimental-ex
tra.js'], |
| 208 | 208 |
| 209 'v8_tracing_include_dir': '<(DEPTH)', |
| 209 # .gyp files or targets should set v8_code to 1 if they build V8 specific | 210 # .gyp files or targets should set v8_code to 1 if they build V8 specific |
| 210 # code, as opposed to external code. This variable is used to control such | 211 # code, as opposed to external code. This variable is used to control such |
| 211 # things as the set of warnings to enable, and whether warnings are treated | 212 # things as the set of warnings to enable, and whether warnings are treated |
| 212 # as errors. | 213 # as errors. |
| 213 'v8_code%': 0, | 214 'v8_code%': 0, |
| 214 | 215 |
| 215 # Speeds up Debug builds: | 216 # Speeds up Debug builds: |
| 216 # 0 - Compiler optimizations off (debuggable) (default). This may | 217 # 0 - Compiler optimizations off (debuggable) (default). This may |
| 217 # be 5x slower than Release (or worse). | 218 # be 5x slower than Release (or worse). |
| 218 # 1 - Turn on optimizations and disable slow DCHECKs, but leave | 219 # 1 - Turn on optimizations and disable slow DCHECKs, but leave |
| (...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1480 '-fsanitize=cfi-vcall', | 1481 '-fsanitize=cfi-vcall', |
| 1481 '-fsanitize=cfi-derived-cast', | 1482 '-fsanitize=cfi-derived-cast', |
| 1482 '-fsanitize=cfi-unrelated-cast', | 1483 '-fsanitize=cfi-unrelated-cast', |
| 1483 ], | 1484 ], |
| 1484 }], | 1485 }], |
| 1485 ], | 1486 ], |
| 1486 }, | 1487 }, |
| 1487 }], | 1488 }], |
| 1488 ], | 1489 ], |
| 1489 } | 1490 } |
| OLD | NEW |