Fix Android framework build

eeebdb538d did not update a Config that
only builds if SK_BUILD_FOR_ANDROID_FRAMEWORK. This appears to be the
necessary parameter that is missing.

BUG=skia:2992

Review URL: https://codereview.chromium.org/1491563003
This commit is contained in:
scroggo 2015-12-01 07:53:37 -08:00 committed by Commit bot
parent c19247fd03
commit cb6cb21cd9

View File

@ -464,7 +464,8 @@ static void create_configs(SkTDArray<Config>* configs) {
#ifdef SK_BUILD_FOR_ANDROID_FRAMEWORK
if (is_cpu_config_allowed("hwui")) {
Config config = { "hwui", Benchmark::kHWUI_Backend, kRGBA_8888_SkColorType,
kPremul_SkAlphaType, 0, kBogusGLContextType, false };
kPremul_SkAlphaType, 0, kBogusGLContextType, kNone_GLContextOptions,
false };
configs->push(config);
}
#endif