Home
last modified time | relevance | path

Searched +full:android +full:- +full:ndk (Results 1 – 25 of 327) sorted by relevance

12345678910>>...14

/third_party/rust/rust/src/ci/docker/host-x86_64/dist-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 # ndk
7 COPY scripts/android-ndk.sh /scripts/
8 RUN . /scripts/android-ndk.sh && \
9 download_ndk android-ndk-r25b-linux.zip
12 ENV TARGETS=arm-linux-androideabi
13 ENV TARGETS=$TARGETS,armv7-linux-androideabi
14 ENV TARGETS=$TARGETS,thumbv7neon-linux-androideabi
15 ENV TARGETS=$TARGETS,i686-linux-android
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/dist-i686-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 COPY scripts/android-ndk.sh /scripts/
7 RUN . /scripts/android-ndk.sh && \
8 download_ndk android-ndk-r15c-linux-x86_64.zip && \
13 RUN chmod 777 /android/ndk && \
14 ln -s /android/ndk/x86-21 /android/ndk/x86
16 ENV PATH=$PATH:/android/ndk/x86-14/bin
18 ENV DEP_Z_ROOT=/android/ndk/x86-14/sysroot/usr/
20 ENV HOSTS=i686-linux-android
[all …]
/third_party/mesa3d/.gitlab-ci/container/debian/
Dandroid_build.sh5 # .gitlab-ci/image-tags.yml tags:
8 set -e
10 . .gitlab-ci/setup-test-env.sh
12 set -x
20 apt-get install -y --no-remove "${EPHEMERAL[@]}"
22 # Fetch the NDK and extract just the toolchain we want.
23 ndk="android-ndk-${ANDROID_NDK_VERSION}"
24 curl -L --retry 4 -f --retry-all-errors --retry-delay 60 \
25 -o $ndk.zip https://dl.google.com/android/repository/$ndk-linux.zip
26 unzip -d / $ndk.zip "$ndk/source.properties" "$ndk/build/cmake/*" "$ndk/toolchains/llvm/*"
[all …]
Dx86_64_test-android.sh6 # .gitlab-ci/image-tags.yml tags:
9 set -e
11 . .gitlab-ci/setup-test-env.sh
13 set -o xtrace
19 build-essential:native
22 config-package-dev
23 debhelper-compat
24 dpkg-dev
25 ninja-build
33 apt-get install -y --no-remove --no-install-recommends \
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/dist-armv7-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 COPY scripts/android-ndk.sh /scripts/
7 RUN . /scripts/android-ndk.sh && \
8 download_ndk android-ndk-r15c-linux-x86_64.zip && \
13 RUN chmod 777 /android/ndk && \
14 ln -s /android/ndk/arm-21 /android/ndk/arm
16 ENV PATH=$PATH:/android/ndk/arm-14/bin
18 ENV DEP_Z_ROOT=/android/ndk/arm-14/sysroot/usr/
20 ENV HOSTS=armv7-linux-androideabi
[all …]
/third_party/nghttp2/doc/sources/
Dbuilding-android-binary.rst1 Building Android binary
4 In this article, we briefly describe how to build Android binary using
5 `Android NDK <https://developer.android.com/ndk>`_ cross-compiler on
8 The easiest way to build android binary is use Dockerfile.android.
9 See Dockerfile.android for more details. If you cannot use
10 Dockerfile.android for whatever reason, continue to read the rest of
13 We offer ``android-config`` script to make the build easier. To make
14 the script work, NDK directory must be set to ``NDK`` environment
15 variable. NDK directory is the directory where NDK is unpacked:
17 .. code-block:: text
[all …]
/third_party/openssl/
DNOTES-ANDROID.md1 Notes for Android platforms
5 -------------------
7 Beside basic tools like perl and make you'll need to download the Android
8 NDK. It's available for Linux, macOS and Windows, but only Linux
11 suitable, MSYS2 might have best chances. NDK version should play lesser
15 -------------
17 Android is a cross-compiled target and you can't rely on `./Configure`
19 target explicitly; there are `android-arm`, `android-arm64`, `android-mips`,
20 `android-mip64`, `android-x86` and `android-x86_64` (`*MIPS` targets are no
21 longer supported with NDK R20+).
[all …]
/third_party/openssl/Configurations/
D15-android.conf1 #### Android...
3 # See NOTES-Android.md for details, and don't miss platform-specific
11 arm => "arm-linux-androideabi",
12 arm64 => "aarch64-linux-android",
13 mips => "mipsel-linux-android",
14 mips64 => "mips64el-linux-android",
15 x86 => "i686-linux-android",
16 x86_64 => "x86_64-linux-android",
21 if ($now_printing =~ m|^android|) {
26 my $ndk;
[all …]
/third_party/rust/rust/src/doc/rustc/src/platform-support/
Dandroid.md1 # *-linux-android and *-linux-androideabi
5 [Android] is a mobile operating system built on top of the Linux kernel.
7 [Android]: https://source.android.com/
11 - Chris Wailes ([@chriswailes](https://github.com/chriswailes))
12 - Matthew Maurer ([@maurer](https://github.com/maurer))
13 - Martin Geisler ([@mgeisler](https://github.com/mgeisler))
17 This target is cross-compiled from a host environment. Development may be done
18 from the [source tree] or using the Android NDK.
20 [source tree]: https://source.android.com/docs/setup/build/downloading
22 Android targets support std. Generated binaries use the ELF file format.
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/dist-aarch64-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 COPY scripts/android-ndk.sh /scripts/
7 RUN . /scripts/android-ndk.sh && \
8 download_and_make_toolchain android-ndk-r15c-linux-x86_64.zip arm64 21
10 ENV PATH=$PATH:/android/ndk/arm64-21/bin
12 ENV DEP_Z_ROOT=/android/ndk/arm64-21/sysroot/usr/
14 ENV HOSTS=aarch64-linux-android
17 --aarch64-linux-android-ndk=/android/ndk/arm64-21 \
18 --disable-rpath \
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/disabled/dist-x86_64-android/
DDockerfile3 COPY scripts/android-base-apt-get.sh /scripts/
4 RUN sh /scripts/android-base-apt-get.sh
6 COPY scripts/android-ndk.sh /scripts/
7 RUN . /scripts/android-ndk.sh && \
8 download_and_make_toolchain android-ndk-r15c-linux-x86_64.zip x86_64 21
10 ENV PATH=$PATH:/android/ndk/x86_64-21/bin
12 ENV DEP_Z_ROOT=/android/ndk/x86_64-21/sysroot/usr/
14 ENV HOSTS=x86_64-linux-android
17 --x86_64-linux-android-ndk=/android/ndk/x86_64-21 \
18 --disable-rpath \
[all …]
/third_party/skia/m133/toolchain/android_trampolines/gen_trampolines/
Dgen_trampolines.go4 // Helper program to generate trampoline scripts for NDK tools.
6 // This program is meant to be run by hand when making changes to the hermetic Android NDK
7 // toolchain, e.g. when upgrading to a new Android NDK version.
10 // built-in Bazel function expects tool paths to point to files under the directory in which it is
12 // to use trampoline scripts that pass through any command-line arguments to the NDK binaries under
28 // Paths relative to the Android NDK root directory. These paths can be determined by inspecting
29 // the Android NDK ZIP file downloaded by the `download_toolchains` macro defined in
32 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ar",
33 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-dwp",
34 "toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86_64/bin/arm-linux-androideabi-ld",
[all …]
/third_party/rust/rust/src/ci/docker/host-x86_64/arm-android/
DDockerfile4 COPY scripts/android-base-apt-get.sh /scripts/
5 RUN sh /scripts/android-base-apt-get.sh
7 COPY scripts/android-ndk.sh /scripts/
8 RUN . /scripts/android-ndk.sh && \
9 download_ndk android-ndk-r25b-linux.zip
11 RUN dpkg --add-architecture i386 && \
12 apt-get update && \
13 apt-get install -y --no-install-recommends \
14 libgl1-mesa-glx \
17 openjdk-8-jre-headless \
[all …]
/third_party/vk-gl-cts/external/amber/src/kokoro/ndk-build/
Dbuild.sh8 # http://www.apache.org/licenses/LICENSE-2.0
16 set -e # fail on error
17 set -x # display commands
22 # Disable git's "detected dubious ownership" error - kokoro checks out the repo with a different
24 git config --global --add safe.directory '*'
26 # NDK Path
27 export ANDROID_NDK="$BUILD_ROOT/android-ndk-r25b"
30 wget -q https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
31 unzip -q ninja-linux.zip
34 # Get Android NDK.
[all …]
/third_party/f2fs-tools/.github/workflows/
Dci.yml1 # See also https://docs.github.com/en/actions/learn-github-actions/expressions
2 # See also https://github.com/marketplace/actions/setup-android-ndk
10 runs-on: ubuntu-latest
12 fail-fast: false
15 - android
16 - linux-gcc
17 - linux-clang
18 - linux-x86-gcc
19 - linux-powerpc64-gcc
20 - linux-mingw64-gcc
[all …]
/third_party/libwebsockets/READMEs/
DREADME.build-android.md1 # Building for Android NDK
3 If you have the ndk and prebuilt toolchains with that, you can simply build
4 lws library for your android app from one cmake and one make command.
10 ## Installing NDK pieces
13 Android Studio and then run `sdkmanager` to install a recent NDK.
15 I installed the sdk and ndk pieces into /opt/android/ and that's how the
16 `./contrib/cross-aarch64-android.cmake` toolchain file is shipped. You can
25 - /home/someone
26 - /home/someone/libwebsockets
27 - /home/someone/mbedtls
[all …]
/third_party/skia/m133/toolchain/
Ddownload_ndk_linux_amd64_toolchain.bzl8 # Path to the Android NDK from the point of view of the cc_toolchain rule.
13 """Downloads the Android NDK under external/ndk_linux_amd64."""
15 # Archive taken from https://github.com/android/ndk/wiki/Unsupported-Downloads#r21e.
19 "https://dl.google.com/android/repository/android-ndk-r21e-linux-x86_64.zip",
20 …"https://storage.googleapis.com/skia-world-readable/bazel/ad7ce5467e18d40050dc51b8e7affc3e635c85bd…
23 strip_prefix = "android-ndk-r21e",
24 build_file = Label("//toolchain:ndk.BUILD"),
/third_party/nghttp2/
DDockerfile.android2 # Dockerfile to build nghttp2 android binary
4 # $ sudo docker build -t nghttp2-android - < Dockerfile.android
6 # After successful build, android binaries are located under
11 # $ sudo docker run -v /path/to/dest:/out nghttp2-android cp /root/build/nghttp2/src/nghttpx /out
14 # Only use standalone-toolchain for reduce size
19 ENV NDK /root/android-ndk-$NDK_VERSION
20 ENV TOOLCHAIN $NDK/toolchains/llvm/prebuilt/linux-x86_64
21 ENV TARGET aarch64-linux-android
23 ENV AR $TOOLCHAIN/bin/llvm-ar
24 ENV CC $TOOLCHAIN/bin/$TARGET$API-clang
[all …]
/third_party/rust/crates/libc/ci/
Dandroid-install-ndk.sh3 set -ex
5 NDK=android-ndk-r26b
6 wget --tries=20 -q https://dl.google.com/android/repository/${NDK}-linux.zip
7 unzip -q ${NDK}-linux.zip
9 mv ./${NDK}/toolchains/llvm/prebuilt/linux-x86_64 /android
11 rm -rf ./${NDK}-linux.zip ./${NDK}
/third_party/toybox/tests/
Dfile.test3 [ -f testing.sh ] && . testing.sh
12 echo "6465780a3033350038ca8f6ce910f94e" | xxd -r -p > android.dex
13 ln -s $FILES/java.class symlink
15 ln -s $FILES/java.klass dangler
24 testing "utf-8" "file $FILES/utf8/japan.txt | sed 's|$FILES/||'" \
25 "utf8/japan.txt: UTF-8 text\n" "" ""
38 testing "Android .dex" "file android.dex" "android.dex: Android dex file, version 035\n" "" ""
40 # These actually test a lot of the ELF code: 32-/64-bit, arm/arm64, PT_INTERP,
41 # the two kinds of NDK ELF note, BuildID, and stripped/not stripped.
42 toyonly testing "Android NDK full ELF note" \
[all …]
/third_party/skia/tools/skqp/
DREADME.md4 SkQP (Skia Quality Program) is a component of the Android CTS (Compatablity
5 Test Suite) that tests an Android device's GPU and OpenGLES & Vulkan drivers
8 See https://skia.org/dev/testing/skqp for pre-build APKs.
11 -----------------------------------
15 - You will need Java JDK 8, `git`, and `python`.
17- Install Chromium's [depot\_tools](http://commondatastorage.googleapis.com/chrome-infra-docs/fl…
22 - Install the [Android NDK](https://developer.android.com/ndk/downloads/).
24 ( cd ~; unzip ~/Downloads/android-ndk-*.zip )
25 ANDROID_NDK=$(ls -d ~/android-ndk-*) # Or wherever you installed the Android NDK.
27 - Install the [Android SDK](https://developer.android.com/studio/#command-tools).
[all …]
/third_party/skia/m133/tools/skqp/
DREADME.md4 SkQP (Skia Quality Program) is a component of the Android CTS (Compatablity
5 Test Suite) that tests an Android device's GPU and OpenGLES & Vulkan drivers
8 See https://skia.org/dev/testing/skqp for pre-build APKs.
11 -----------------------------------
15 - You will need Java JDK 8, `git`, and `python`.
17- Install Chromium's [depot\_tools](http://commondatastorage.googleapis.com/chrome-infra-docs/fl…
22 - Install the [Android NDK](https://developer.android.com/ndk/downloads/).
24 ( cd ~; unzip ~/Downloads/android-ndk-*.zip )
25 ANDROID_NDK_HOME=$(ls -d ~/android-ndk-*) # Or wherever you installed the Android NDK.
27 - Install the [Android SDK](https://developer.android.com/studio/#command-tools).
[all …]
/third_party/skia/m133/third_party/externals/libpng/contrib/arm-neon/
Dandroid-ndk.c1 /* contrib/arm-neon/android-ndk.c
3 * Copyright (c) 2014 Glenn Randers-Pehrson
10 * SEE contrib/arm-neon/README before reporting bugs
13 * BUG REPORTS: png-mng-implement@sourceforge.net
15 * png_have_neon implemented for the Android NDK, see:
18 * http://www.kandroid.org/ndk/docs/CPU-ARM-NEON.html
19 * https://code.google.com/p/android/issues/detail?id=49065
21 * NOTE: this requires that libpng is built against the Android NDK and linked
22 * with an implementation of the Android ARM 'cpu-features' library. The code
24 * only the header files exist in the NDK.
[all …]
/third_party/skia/third_party/externals/libpng/contrib/arm-neon/
Dandroid-ndk.c1 /* contrib/arm-neon/android-ndk.c
3 * Copyright (c) 2014 Glenn Randers-Pehrson
11 * SEE contrib/arm-neon/README before reporting bugs
14 * BUG REPORTS: png-mng-implement@sourceforge.net
16 * png_have_neon implemented for the Android NDK, see:
19 * http://www.kandroid.org/ndk/docs/CPU-ARM-NEON.html
20 * https://code.google.com/p/android/issues/detail?id=49065
22 * NOTE: this requires that libpng is built against the Android NDK and linked
23 * with an implementation of the Android ARM 'cpu-features' library. The code
25 * only the header files exist in the NDK.
[all …]
/third_party/skia/third_party/externals/oboe/tests/
DREADME.md7 1. Connect an Android device or start the Android emulator
12 …and executed one of the Oboe examples or OboeTester. That ensures that the NDK and cmake is instal…
20 cmake --version
24 export ANDROID_HOME=$HOME/Library/Android/sdk
28 export ANDROID_HOME=$HOME/Android/Sdk
30 Now we need to determine the latest installed version of the NDK. Enter:
32 ls $ANDROID_HOME/ndk
36 export ANDROID_NDK=$ANDROID_HOME/ndk/21.0.6113669/
45 cmake --version
54 You may need to enter \<control-c\> to exit the script.
[all …]

12345678910>>...14