File: update-android-headers.sh

package info (click to toggle)
mesa 26.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 325,884 kB
  • sloc: ansic: 2,260,508; xml: 1,035,283; cpp: 528,036; python: 83,447; asm: 40,568; yacc: 12,040; lisp: 3,663; lex: 3,461; sh: 1,035; makefile: 224
file content (60 lines) | stat: -rwxr-xr-x 2,490 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/bin/sh

set -eu

if [ ! -e .git ]; then
    echo must run from top-level directory;
    exit 1
fi

if [ ! -d platform-hardware-libhardware ]; then
    git clone --depth 1 https://android.googlesource.com/platform/frameworks/native platform-frameworks-native
    git clone --depth 1 https://android.googlesource.com/platform/hardware/libhardware platform-hardware-libhardware
    git clone --depth 1 https://android.googlesource.com/platform/system/core platform-system-core
    git clone --depth 1 https://android.googlesource.com/platform/system/logging platform-system-logging
    git clone --depth 1 https://android.googlesource.com/platform/system/unwinding platform-system-unwinding
fi

dest=include/android_stub

# Persist the frozen Android N system/window.h for backward compatibility

cp -av ${dest}/system/window.h platform-system-core/libsystem/include/system

rm -rf ${dest}
mkdir ${dest}


# These directories contains mostly only the files we need, so copy wholesale

cp -av                                                                  \
    platform-frameworks-native/libs/nativewindow/include/vndk           \
    platform-frameworks-native/libs/nativebase/include/nativebase       \
    platform-system-core/libsync/include/ndk                            \
    platform-system-core/libsync/include/sync                           \
    platform-system-core/libsystem/include/system                       \
    platform-system-logging/liblog/include/log                          \
    platform-system-unwinding/libbacktrace/include/backtrace            \
    ${dest}


# We only need a few files from these big directories so just copy those

mkdir ${dest}/hardware
cp -av platform-hardware-libhardware/include/hardware/{hardware,gralloc,gralloc1,fb}.h ${dest}/hardware
cp -av platform-frameworks-native/vulkan/include/hardware/hwvulkan.h ${dest}/hardware

mkdir ${dest}/cutils
cp -av platform-system-core/libcutils/include/cutils/{compiler,log,native_handle,properties,trace}.h ${dest}/cutils


# include/android has files from a few different projects

mkdir ${dest}/android
cp -av                                                                  \
    platform-frameworks-native/libs/nativewindow/include/android/*      \
    platform-frameworks-native/libs/arect/include/android/*             \
    platform-system-core/libsync/include/android/*                      \
    platform-system-logging/liblog/include/android/*                    \
    ${dest}/android