Revert "ANDROID: build: Add copy of symbol list file to common directory"

This reverts commit 1da282c5e2.

Change-Id: Ic2225089a4e3b1280376141b1670e7645b649ea8
Signed-off-by: jianzhou <quic_jianzhou@quicinc.com>
This commit is contained in:
jianzhou 2023-04-12 23:34:21 -07:00 committed by Gerrit - the friendly Code Review server
parent 5106eabcb8
commit 00ba33c673

View File

@ -8,7 +8,6 @@ import glob
import logging
import os
import re
import shutil
import sys
import subprocess
@ -55,13 +54,6 @@ class BazelBuilder:
except OSError:
pass
def copy_abi_file(self):
"""Copy ABI STG file from msm-kernel to common"""
msm_sym_list = os.path.join(self.workspace, "msm-kernel", "android", "abi_gki_aarch64_qcom")
if os.path.exists(msm_sym_list):
shutil.copy2(msm_sym_list, os.path.join(self.workspace, "common", "android", "abi_gki_aarch64_qcom"))
def setup_extensions(self):
"""Set up the extension files if needed"""
for (ext, def_src) in [
@ -242,7 +234,6 @@ class BazelBuilder:
sys.exit(1)
self.clean_legacy_generated_files()
self.copy_abi_file()
if self.skip_list:
self.user_opts.extend(["--//msm-kernel:skip_{}=true".format(s) for s in self.skip_list])