Files
device_google_taimen/recovery/Android.bp
Tao Bao f3e4b070a1 Dark boot on dark theme.
Bug: 113028175
Bug: 134430124
Test: Build and flash taimen with the matching bootloader change. Toggle
      dark mode in Settings. Check serial log regarding the start of
      vendor.theme_{set,clear} services. Also read the value via `dd bs=1
      skip=2048 if=/dev/block/sda5 count=32 | xxd` to confirm the change.
Test: Trigger a factory reset via Settings. Check the value in /misc
      after the reset.
Change-Id: I3ae9ac41d689a4d0a9d5e0275de92c35dda068b7
2019-06-19 15:56:36 +00:00

39 lines
973 B
Plaintext

//
// Copyright (C) 2019 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
cc_library_static {
name: "librecovery_ui_taimen",
owner: "google",
cflags: [
"-Wall",
"-Wextra",
"-Werror",
"-pedantic",
],
srcs: [
"recovery_ui.cpp",
],
static_libs: [
"libbootloader_message",
],
shared_libs: [
"libbase",
"librecovery_ui",
],
}