versioner: Add 28 to version list

This commit adds 28 to version list so that we can pass
slow_preprocessor_idempotence.  If 28 is not in the version list,
versioner will add another `#ifdef` guard and fail the test.

Bug: 113263746
Test: ./bionic/tools/versioner/run_tests.py
Change-Id: I3f21fc71ffd9e55326c4587bbc5e689eb72596b6
This commit is contained in:
Logan Chien 2018-10-23 15:04:00 +08:00
parent aede30d316
commit 3fc86c158f

View file

@ -136,7 +136,7 @@ static ArchMap<std::string> arch_targets = {
{ Arch::x86_64, "x86_64-linux-android" },
};
static const std::set<int> default_levels = { 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27 };
static const std::set<int> default_levels = { 14, 15, 16, 17, 18, 19, 21, 23, 24, 25, 26, 27, 28 };
static const ArchMap<int> arch_min_api = {
{ Arch::arm, 9 },