1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- linux_use_bundled_binutils_override = true
- build_with_chromium = false
- enable_java_templates = true
- asan_suppressions_file = "//build/sanitizers/asan_suppressions.cc"
- lsan_suppressions_file = "//build/sanitizers/lsan_suppressions.cc"
- tsan_suppressions_file = "//build/sanitizers/tsan_suppressions.cc"
- msan_blacklist_path =
- rebase_path("//tools_libyuv/msan/blacklist.txt", root_build_dir)
- ubsan_blacklist_path =
- rebase_path("//tools_libyuv/ubsan/blacklist.txt", root_build_dir)
- ubsan_vptr_blacklist_path =
- rebase_path("//tools_libyuv/ubsan/vptr_blacklist.txt", root_build_dir)
- ignore_elf32_limitations = true
- if (host_os == "mac") {
- _result = exec_script("//build/mac/should_use_hermetic_xcode.py",
- [ target_os ],
- "value")
- assert(_result != 2,
- "Do not allow building targets with the default" +
- "hermetic toolchain if the minimum OS version is not met.")
- use_system_xcode = _result == 0
- }
- declare_args() {
-
- enable_base_tracing = false
- use_perfetto_client_library = false
-
-
- gtest_enable_absl_printers = true
- }
|