| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/usr/bin/env bash
- #
- # Copyright (c) 2020 Project CHIP Authors
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- set -e
- set -x
- env
- if [ -z "$ANDROID_HOME" ]; then
- echo "ANDROID_HOME not set!"
- exit 1
- fi
- if [ -z "$ANDROID_NDK_HOME" ]; then
- echo "ANDROID_NDK_HOME not set!"
- exit 1
- fi
- if [ -z "$TARGET_CPU" ]; then
- echo "TARGET_CPU not set! Candidates: arm, arm64, x86 and x64."
- exit 1
- fi
- source scripts/activate.sh
- # Set up JARs
- python3 third_party/android_deps/set_up_android_deps.py
- # Build CMake for Android Studio
- echo "build ide"
- gn gen --check --fail-on-unused-args out/"android_$TARGET_CPU" --args="target_os=\"android\" target_cpu=\"$TARGET_CPU\" android_ndk_root=\"$ANDROID_NDK_HOME\" android_sdk_root=\"$ANDROID_HOME\"" --ide=json --json-ide-script=//scripts/examples/gn_to_cmakelists.py
|