1 /* 2 * Copyright (C) 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.systemui.tv; 18 19 import com.android.systemui.dagger.DefaultComponentBinder; 20 import com.android.systemui.dagger.DependencyProvider; 21 import com.android.systemui.dagger.SysUIComponent; 22 import com.android.systemui.dagger.SysUISingleton; 23 import com.android.systemui.dagger.SystemUIModule; 24 import com.android.systemui.globalactions.ShutdownUiModule; 25 import com.android.systemui.keyguard.dagger.KeyguardModule; 26 import com.android.systemui.recents.RecentsModule; 27 import com.android.systemui.statusbar.dagger.CentralSurfacesDependenciesModule; 28 import com.android.systemui.statusbar.notification.dagger.NotificationsModule; 29 import com.android.systemui.statusbar.notification.row.NotificationRowModule; 30 import com.android.systemui.wallpapers.dagger.NoopWallpaperModule; 31 32 import dagger.Subcomponent; 33 34 /** 35 * Dagger Subcomponent for Core SysUI. 36 */ 37 @SysUISingleton 38 @Subcomponent(modules = { 39 CentralSurfacesDependenciesModule.class, 40 DefaultComponentBinder.class, 41 DependencyProvider.class, 42 KeyguardModule.class, 43 NoopWallpaperModule.class, 44 NotificationRowModule.class, 45 NotificationsModule.class, 46 RecentsModule.class, 47 ShutdownUiModule.class, 48 SystemUIModule.class, 49 TvSystemUIBinder.class, 50 TVSystemUICoreStartableModule.class, 51 TvSystemUIModule.class}) 52 public interface TvSysUIComponent extends SysUIComponent { 53 54 /** 55 * Builder for a SysUIComponent. 56 */ 57 @Subcomponent.Builder 58 interface Builder extends SysUIComponent.Builder { build()59 TvSysUIComponent build(); 60 } 61 } 62