Compare commits

..

4 Commits

Author SHA1 Message Date
uazo
b438ab71d9 disable use_relative_vtables_abi 2023-03-06 09:31:51 -09:00
uazo
6b6e64d2a8 Disable kythe annotations 2023-03-04 04:08:30 -10:00
uazo
3ed76fc160 Update Dockerfile 2023-03-02 09:34:42 +01:00
uazo
eb0447a0b5 Removed build/install-build-deps-android.sh from repo 2023-03-02 02:14:07 -06:00
2 changed files with 3 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ if(getenv("TARGET_CPU") != "") {
if (target_os == "android") {
target_os = "android" # fix traffic annotation auditor
enable_kythe_annotations = true
#enable_kythe_annotations = true
chrome_public_manifest_package = "org.bromite.bromite.dev"
_is_debug_build = getenv("TARGET_ISDEBUG")
@@ -30,6 +30,7 @@ if (target_os == "android") {
use_cfi_cast = false # disable it
} else {
generate_linker_map = true
use_relative_vtables_abi = false
}
}

View File

@@ -33,14 +33,11 @@ USER ${user}
WORKDIR /home/${user}
RUN wget https://raw.githubusercontent.com/chromium/chromium/$VERSION/build/install-build-deps.sh \
&& \
wget https://raw.githubusercontent.com/chromium/chromium/$VERSION/build/install-build-deps-android.sh \
&& \
sed -i 's/snapcraft/wget/' install-build-deps.sh && \
chmod +x ./install-build-deps.sh && \
chmod +x ./install-build-deps-android.sh && \
sudo ./install-build-deps.sh --no-prompt --lib32 --no-chromeos-fonts && \
sudo ./install-build-deps-android.sh --no-prompt && \
sudo ./install-build-deps.sh --android --no-prompt --no-chromeos-fonts && \
sudo mkdir -p /github/home/.vscode-server && \
sudo chown lg /github/home/.vscode-server