Include 32 bit sources in Android.mk generator

It seems there was a merge issue when including the AArch32 port of VIXL
and the port of `generate_android.mk.py` was incorrectly added.

Change-Id: Id99d81c4dd6e40684d069b32eee4a8891bcdb209
This commit is contained in:
Pierre Langlois 2016-06-17 13:34:53 +01:00
parent 88c46b84df
commit f849f80efe

View File

@ -54,10 +54,14 @@ parser.add_argument('-o', '--output',
args = parser.parse_args()
sources = glob.glob(os.path.join(dir_root, 'src', '*.cc')) + \
glob.glob(os.path.join(dir_root, 'src', 'a64', '*.cc'))
sources = map(lambda p : os.path.relpath(p, dir_root), sources)
sources.sort()
common_sources = get_source_files(dir_root, os.path.join('src', '*.cc'))
a32_sources = get_source_files(dir_root, os.path.join('src', 'a32', '*.cc'))
a64_sources = get_source_files(dir_root, os.path.join('src', 'a64', '*.cc'))
test_common_sources = get_source_files(dir_root, os.path.join('test', '*.cc'))
test_a64_sources = get_source_files(dir_root, os.path.join('test', 'a64', '*.cc'))
test_a32_sources = get_source_files(dir_root, os.path.join('test', 'a32', '*.cc'))
test_sources = test_common_sources + test_a32_sources + test_a64_sources
test_sources.sort()