| /third_party/libuv/.github/workflows/ |
| D | sanitizer.yml | 6 - '**' 7 - '!docs/**' 8 - '!.**' 9 - '.github/workflows/sanitizer.yml' 12 - v[0-9].* 13 - master 16 sanitizers-linux: 17 runs-on: ubuntu-22.04 19 - uses: actions/checkout@v2 20 - name: Setup [all …]
|
| /third_party/grpc/tools/ |
| D | bazel.rc | 3 # Bazel 7 begins to enable module by default which breaks gRPC build. 5 common --enable_bzlmod=false 7 # for platform-appropriate cxxopts 8 common --enable_platform_specific_config 10 build:windows --cxxopt='/std:c++17' 11 build:windows --host_cxxopt='/std:c++17' 12 build:linux --cxxopt='-std=c++17' 13 build:linux --host_cxxopt='-std=c++17' 14 build:macos --cxxopt='-std=c++17' 15 build:macos --host_cxxopt='-std=c++17' [all …]
|
| /third_party/skia/m133/infra/bots/recipe_modules/build/examples/full.expected/ |
| D | Build-Debian10-Clang-x86_64-Debug-TSAN.json | 5 "[START_DIR]/cache/work/skia/bin/fetch-gn" 13 "name": "fetch-gn" 18 "[START_DIR]/cache/work/skia/bin/fetch-ninja" 26 "name": "fetch-ninja" 31 "-u", 33 "--json-output", 49 "-s" 60 "name": "ccache stats-start" 66 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-TSAN/Debug", 67 …--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"… [all …]
|
| D | Build-Debian10-Clang-x86_64-Debug-Vulkan_TSAN.json | 5 "[START_DIR]/cache/work/skia/bin/fetch-gn" 13 "name": "fetch-gn" 18 "[START_DIR]/cache/work/skia/bin/fetch-ninja" 26 "name": "fetch-ninja" 31 "-u", 33 "--json-output", 49 "-s" 60 "name": "ccache stats-start" 66 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-Vulkan_TSAN/Debug", 67 …--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"… [all …]
|
| /third_party/grpc/tools/dockerfile/test/rbe_ubuntu2004/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04 21 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean 27 # These dependencies are not sufficient to build gRPC Python, gRPC Python 29 RUN apt-get update && apt-get install -y \ 31 python3-pip \ 32 python3-setuptools \ 33 python3-yaml \ 34 && apt-get clean 37 RUN python3 -m pip install --upgrade pip==19.3.1 [all …]
|
| /third_party/grpc/templates/tools/dockerfile/test/rbe_ubuntu2004/ |
| D | Dockerfile.template | 2 --- | 9 # http://www.apache.org/licenses/LICENSE-2.0 19 # Workaround the "tzdata hangs apt-get install during docker image build" issue for ubuntu20.04 23 RUN apt-get update && apt-get install -y build-essential curl git time wget zip && apt-get clean 28 RUN ln -s /usr/bin/python3 /usr/bin/python 30 # Install Google's LLVM build for Ubuntu 20.04 31 …# Heavily inspired by https://github.com/GoogleCloudPlatform/container-definitions/tree/master/ubu… 32 # See go/llvm-docker 33 # Note that we are using the google's pre-built tools for multiple reasons: 34 …# * this is what the "official" rbe-ubuntu18-04 image is using: See https://github.com/GoogleCloud… [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/examples/full.expected/ |
| D | Build-Debian10-Clang-x86_64-Debug-SwiftShader_TSAN.json | 5 "-u", 7 "--json-output", 23 "-u", 25 "--json-output", 27 "ensure-directory", 28 "--mode", 30 …"[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-SwiftShader_TSAN/Debug/swiftsha… 38 "-DSWIFTSHADER_BUILD_TESTS=OFF", 39 "-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF", 40 "-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF", [all …]
|
| D | Build-Debian10-Clang-x86_64-Debug-TSAN.json | 5 "-u", 7 "--json-output", 23 "-u", 24 "[START_DIR]/cache/work/skia/bin/fetch-gn" 32 "name": "fetch-gn" 37 "-s" 48 "name": "ccache stats-start" 54 "[START_DIR]/cache/work/skia/out/Build-Debian10-Clang-x86_64-Debug-TSAN/Debug", 55 …--args=cc=\"[START_DIR]/clang_linux/bin/clang\" cc_wrapper=\"[START_DIR]/ccache_linux/bin/ccache\"… 71 "-C", [all …]
|
| /third_party/skia/m133/site/docs/dev/testing/ |
| D | xsan.md | 2 --- 3 title: "MSAN, ASAN, & TSAN" 4 linkTitle: "MSAN, ASAN, & TSAN" 6 --- 11 Compiling Skia with ASAN, UBSAN, or TSAN can be done with the latest version of Clang. 13 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific. 14 - ASAN works on Linux, Mac, Android, and Windows. 15 - TSAN works on Linux and Mac. 16 - MSAN works on Linux[1]. 19 with the system-provided C++ standard library, which is usually libstdc++. [all …]
|
| /third_party/skia/site/docs/dev/testing/ |
| D | xsan.md | 2 --- 3 title: "MSAN, ASAN, & TSAN" 4 linkTitle: "MSAN, ASAN, & TSAN" 6 --- 11 Compiling Skia with ASAN, UBSAN, or TSAN can be done with the latest version of Clang. 13 - UBSAN works on Linux, Mac, Android, and Windows, though some checks are platform-specific. 14 - ASAN works on Linux, Mac, Android, and Windows. 15 - TSAN works on Linux and Mac. 16 - MSAN works on Linux[1]. 19 with the system-provided C++ standard library, which is usually libstdc++. [all …]
|
| /third_party/grpc/tools/remote_build/ |
| D | linux.bazelrc | 8 # http://www.apache.org/licenses/LICENSE-2.0 20 # Next section is linux-specific RBE configuration 21 build --crosstool_top=//third_party/toolchains:rbe_linux_default_toolchain_suite 22 build --extra_toolchains=//third_party/toolchains:rbe_linux_default_cc_toolchain 24 build --extra_execution_platforms=//third_party/toolchains:rbe_linux_default_platform 25 build --host_platform=//third_party/toolchains:rbe_linux_default_platform 26 build --platforms=//third_party/toolchains:rbe_linux_default_platform 28 # we assume the default bazel RBE build is on linux, 30 build --test_tag_filters=-no_linux 31 build --build_tag_filters=-no_linux [all …]
|
| /third_party/benchmark/.github/workflows/ |
| D | sanitizer.yml | 13 runs-on: ubuntu-latest 15 fail-fast: false 18 sanitizer: ['asan', 'ubsan', 'tsan'] 22 - uses: actions/checkout@v2 24 - name: configure msan env 27 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=memory -fsanitize-memory-track-origins… 30 - name: configure ubsan env 33 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=undefined -fno-sanitize-recover=all" >… 36 - name: configure asan env 39 …echo "EXTRA_FLAGS=-g -O2 -fno-omit-frame-pointer -fsanitize=address -fno-sanitize-recover=all" >> … [all …]
|
| /third_party/skia/m133/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 10 """Build SwiftShader with CMake. 22 '-DSWIFTSHADER_BUILD_TESTS=OFF', 23 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 24 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. 31 # We arrange our MSAN/TSAN prebuilts a little differently than 34 # CMakeLists.txt at a harmless non-existent path. 38 # Extra flags for MSAN/TSAN, if necessary. 48 '-fsanitize=' + full, 49 '-stdlib=libc++', [all …]
|
| /third_party/skia/infra/bots/recipe_modules/build/ |
| D | default.py | 2 # Use of this source code is governed by a BSD-style license that can be 10 api.run(api.python, 'build command_buffer', 13 '--chrome-dir', chrome_dir, 14 '--output-dir', out, 15 '--extra-gn-args', 'mac_sdk_min="10.13"', 16 '--no-sync', '--no-hooks', '--make-output-dir']) 20 """Build SwiftShader with CMake. 31 '-DSWIFTSHADER_BUILD_TESTS=OFF', 32 '-DSWIFTSHADER_WARNINGS_AS_ERRORS=OFF', 33 '-DREACTOR_ENABLE_MEMORY_SANITIZER_INSTRUMENTATION=OFF', # Way too slow. [all …]
|
| /third_party/rust/rust/src/bootstrap/ |
| D | llvm.rs | 4 //! compilation in build scripts that Cargo has. This is because the 8 //! LLVM and compiler-rt are essentially just wired up to everything else to 30 /// Path to llvm-config binary. 31 /// NB: This is always the host llvm-config! 69 /// It's used to avoid busting caches during x.py check -- if we've already built 72 /// This will return the llvm-config if it can get it (but it will not build it 77 ) -> Result<LlvmResult, Meta> { in prebuilt_llvm_config() 81 // custom LLVM for the build triple. in prebuilt_llvm_config() 96 let root = "src/llvm-project/llvm"; in prebuilt_llvm_config() 99 let mut llvm_config_ret_dir = builder.llvm_out(builder.config.build); in prebuilt_llvm_config() [all …]
|
| /third_party/skia/infra/bots/assets/clang_linux/ |
| D | create.py | 5 # Use of this source code is governed by a BSD-style license that can be 25 # Build Clang, lld, compiler-rt (sanitizer support) and libc++. 27 subprocess.check_call(["git", "clone", "--depth", "1", "-b", BRANCH, 28 "https://llvm.googlesource.com/llvm-project"]) 29 os.chdir("llvm-project") 32 subprocess.check_call(["cmake", "../llvm", "-G", "Ninja", 33 "-DCMAKE_BUILD_TYPE=MinSizeRel", 34 "-DCMAKE_INSTALL_PREFIX=" + target_dir, 35 "-DLLVM_ENABLE_PROJECTS=clang;clang-tools-extra;" + 36 "compiler-rt;libcxx;libcxxabi;lld", [all …]
|
| /third_party/skia/m133/infra/bots/assets/clang_linux/ |
| D | Dockerfile | 2 # https://github.com/llvm/llvm-project/blob/76fd4bf675b5ceeeca0e4e15cf15d89c7acf4947/llvm/utils/doc… 6 # docker pull launcher.gcr.io/google/debian10:latest && docker images --digests | grep debian10 9 # Install build dependencies of llvm. 12 sed 's/^deb/deb-src /g' >> /etc/apt/sources.list 14 # compiler-rt (it fails using the built-in ld). 18 RUN apt-get update && \ 19 apt-get install -y --no-install-recommends \ 20 ca-certificates=20200601~deb10u2 gnupg=2.2.12-1+deb10u2 \ 21 build-essential=12.6 cmake=3.13.4-1 make=4.2.1-1.2 python3=3.7.3-1 \ 22 zlib1g=1:1.2.11.dfsg-1+deb10u2 wget=1.20.1-1.1 unzip=6.0-23+deb10u3 \ [all …]
|
| /third_party/skia/third_party/externals/abseil-cpp/ci/ |
| D | linux_clang-latest_libcxx_tsan_bazel.sh | 9 # https://www.apache.org/licenses/LICENSE-2.0 17 # This script that can be invoked to test abseil-cpp in a hermetic environment 21 set -euox pipefail 23 if [[ -z ${ABSEIL_ROOT:-} ]]; then 27 if [[ -z ${STD:-} ]]; then 31 if [[ -z ${COMPILATION_MODE:-} ]]; then 35 if [[ -z ${EXCEPTIONS_MODE:-} ]]; then 36 EXCEPTIONS_MODE="-fno-exceptions -fexceptions" 44 if [[ ${USE_BAZEL_CACHE:-0} -ne 0 ]]; then 45 …DOCKER_EXTRA_ARGS="--mount type=bind,source=${KOKORO_KEYSTORE_DIR},target=/keystore,readonly ${DOC… [all …]
|
| /third_party/skia/m133/third_party/externals/libyuv/docs/ |
| D | deprecated_builds.md | 3 Older documentation on build configs which are no longer supported. 5 ## Pre-requisites 7 …need to have depot tools installed: https://www.chromium.org/developers/how-tos/install-depot-tools 60 ./build/android/play_services/update.py download 65 The sync will generate native build files for your environment using gyp (Windows: Visual Studio, O… 77 call python gyp_libyuv -fninja -G msvs_version=2013 78 ninja -j7 -C out\Release 79 ninja -j7 -C out\Debug 82 call python gyp_libyuv -fninja -G msvs_version=2013 83 ninja -C out\Debug_x64 [all …]
|
| /third_party/skia/m133/third_party/externals/harfbuzz/.circleci/ |
| D | config.yml | 4 win32-executor: 6 - image: cimg/base:2023.10 7 win64-executor: 9 - image: cimg/base:2023.10 10 dist-executor: 12 - image: cimg/base:2023.10 16 macos-aat-fonts: 20 - checkout 21 …- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g… 22 - run: pip3 install meson --upgrade [all …]
|
| /third_party/skia/third_party/externals/angle2/infra/config/ |
| D | main.star | 4 # Use of this source code is governed by a BSD-style license that can be 13 "-module-docstring", 14 "-function-docstring", 20 # Launch 0% of Swarming tasks for builds in "realms-aware mode" 38 buildbucket = "cr-buildbucket.appspot.com", 39 logdog = "luci-logdog.appspot.com", 40 milo = "luci-milo.appspot.com", 41 notify = "luci-notify.appspot.com", 42 scheduler = "luci-scheduler.appspot.com", 43 swarming = "chromium-swarm.appspot.com", [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/.circleci/ |
| D | config.yml | 4 win32-executor: 6 - image: cimg/base:edge-20.04 7 win64-executor: 9 - image: cimg/base:edge-20.04 10 autotools-executor: 12 - image: cimg/base:edge-20.04 16 macos-aat-fonts: 20 - checkout 21 …- run: HOMEBREW_NO_AUTO_UPDATE=1 brew install pkg-config ragel freetype glib cairo python3 icu4c g… 22 - run: pip3 install meson --upgrade [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/docs/ |
| D | README.rst | 1 Subzero - Fast code generator for PNaCl bitcode 5 ------ 11 -------- 15 <https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/developing-pnacl>`_ 18 Checking out the Native Client project also gets the pre-built clang and LLVM 19 tools in ``native_client/../third_party/llvm-build/Release+Asserts/bin`` which 26 The Makefile is designed to be used as part of the higher level LLVM build 27 system. To build manually, use the ``Makefile.standalone``. There are several 28 build configurations from the command line:: 30 make -f Makefile.standalone [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/subzero/ |
| D | README.rst | 1 Subzero - Fast code generator for PNaCl bitcode 5 ------ 11 -------- 15 <https://sites.google.com/a/chromium.org/dev/nativeclient/pnacl/developing-pnacl>`_ 18 Checking out the Native Client project also gets the pre-built clang and LLVM 19 tools in ``native_client/../third_party/llvm-build/Release+Asserts/bin`` which 26 The Makefile is designed to be used as part of the higher level LLVM build 27 system. To build manually, use the ``Makefile.standalone``. There are several 28 build configurations from the command line:: 30 make -f Makefile.standalone [all …]
|
| /third_party/protobuf/ci/ |
| D | common.bazelrc | 2 build --javacopt=-Xep:SelfAssertion:WARN 4 build:dbg --compilation_mode=dbg 6 build:opt --compilation_mode=opt 8 build:san-common --config=dbg --strip=never --copt=-O0 --copt=-fno-omit-frame-pointer 10 build:asan --config=san-common --copt=-fsanitize=address --linkopt=-fsanitize=address 12 build:asan --dynamic_mode=off 14 build:msan --config=san-common --copt=-fsanitize=memory --linkopt=-fsanitize=memory 15 build:msan --copt=-fsanitize-memory-track-origins 16 build:msan --copt=-fsanitize-memory-use-after-dtor 17 build:msan --action_env=MSAN_OPTIONS=poison_in_dtor=1 [all …]
|