blob: cdc09034e75babacb1613c929d4f15e62d0c6d4d [file] [log] [blame]
Matthew Ngf8869462019-01-18 13:31:47 -08001# Copyright (C) 2019 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16include $(CLEAR_VARS)
17
18LOCAL_MODULE := frameworks-base-overlays
Matthew Ngf8869462019-01-18 13:31:47 -080019LOCAL_REQUIRED_MODULES := \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050020 AccentColorBlackOverlay \
Amin Shaikhd98f53a2019-04-10 16:27:19 -040021 AccentColorCinnamonOverlay \
22 AccentColorOceanOverlay \
23 AccentColorOrchidOverlay \
24 AccentColorSpaceOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050025 AccentColorGreenOverlay \
26 AccentColorPurpleOverlay \
Jay Aliomer6da7e062020-04-22 15:15:49 -040027 AccentColorPaletteOverlay \
28 AccentColorCarbonOverlay \
29 AccentColorSandOverlay \
Jay Aliomer461fe58332020-05-19 19:04:19 -040030 AccentColorAmethystOverlay \
31 AccentColorAquamarineOverlay \
32 AccentColorTangerineOverlay \
Amin Shaikh7c29a7a2019-02-06 11:01:40 -050033 DisplayCutoutEmulationCornerOverlay \
34 DisplayCutoutEmulationDoubleOverlay \
Jay Aliomere3b17f72020-05-15 18:43:16 -040035 DisplayCutoutEmulationHoleOverlay \
Amin Shaikh7c29a7a2019-02-06 11:01:40 -050036 DisplayCutoutEmulationTallOverlay \
shawnlin7ae94112020-02-06 15:49:51 +080037 DisplayCutoutEmulationWaterfallOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050038 FontNotoSerifSourceOverlay \
39 IconPackCircularAndroidOverlay \
Hyunyoung Song6da14672019-03-04 17:26:31 -080040 IconPackCircularLauncherOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050041 IconPackCircularSettingsOverlay \
42 IconPackCircularSystemUIOverlay \
Amin Shaikh0974b882019-04-23 17:14:56 -040043 IconPackCircularThemePickerOverlay \
Jay Aliomer58a7f522020-04-23 23:38:34 -040044 IconPackVictorAndroidOverlay \
45 IconPackVictorLauncherOverlay \
46 IconPackVictorSettingsOverlay \
47 IconPackVictorSystemUIOverlay \
48 IconPackVictorThemePickerOverlay \
49 IconPackSamAndroidOverlay \
50 IconPackSamLauncherOverlay \
51 IconPackSamSettingsOverlay \
52 IconPackSamSystemUIOverlay \
53 IconPackSamThemePickerOverlay \
54 IconPackKaiAndroidOverlay \
55 IconPackKaiLauncherOverlay \
56 IconPackKaiSettingsOverlay \
57 IconPackKaiSystemUIOverlay \
58 IconPackKaiThemePickerOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050059 IconPackFilledAndroidOverlay \
Hyunyoung Song6da14672019-03-04 17:26:31 -080060 IconPackFilledLauncherOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050061 IconPackFilledSettingsOverlay \
62 IconPackFilledSystemUIOverlay \
Amin Shaikh0974b882019-04-23 17:14:56 -040063 IconPackFilledThemePickerOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050064 IconPackRoundedAndroidOverlay \
Hyunyoung Song6da14672019-03-04 17:26:31 -080065 IconPackRoundedLauncherOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050066 IconPackRoundedSettingsOverlay \
67 IconPackRoundedSystemUIOverlay \
Dyneteve66fbdaf2019-11-03 18:02:03 +000068 IconPackRoundedThemePickerOverlay \
Tracy Zhoud617c8c2020-04-28 22:40:29 -070069 IconShapePebbleOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050070 IconShapeRoundedRectOverlay \
Amin Shaikh0c05cad2019-02-05 17:19:33 -050071 IconShapeSquircleOverlay \
Tracy Zhou3c222e52020-04-09 18:06:40 -070072 IconShapeTaperedRectOverlay \
Winson Chungd9f2fb32019-03-05 11:10:12 -080073 IconShapeTeardropOverlay \
Tracy Zhou3c222e52020-04-09 18:06:40 -070074 IconShapeVesselOverlay \
Winson Chungd9f2fb32019-03-05 11:10:12 -080075 NavigationBarMode3ButtonOverlay \
Mehdi Alizadehe4217032019-05-24 13:18:01 -070076 NavigationBarModeGesturalOverlay \
77 NavigationBarModeGesturalOverlayNarrowBack \
78 NavigationBarModeGesturalOverlayWideBack \
Bookatz6d31ac12019-12-10 12:50:22 -080079 NavigationBarModeGesturalOverlayExtraWideBack \
Bill Lindaa9a402020-05-20 12:34:10 +080080 OneHandedModeGesturalOverlay \
Bookatz6d31ac12019-12-10 12:50:22 -080081 preinstalled-packages-platform-overlays.xml
Amin Shaikh0c05cad2019-02-05 17:19:33 -050082
Amin Shaikh7c29a7a2019-02-06 11:01:40 -050083include $(BUILD_PHONY_PACKAGE)
84include $(CLEAR_VARS)
85
86LOCAL_MODULE := frameworks-base-overlays-debug
Matthew Ngf8869462019-01-18 13:31:47 -080087
88include $(BUILD_PHONY_PACKAGE)
Matthew Ngf8869462019-01-18 13:31:47 -080089include $(call first-makefiles-under,$(LOCAL_PATH))