• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2022 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.go;
18 
19 import com.android.systemui.dagger.DefaultActivityBinder;
20 import com.android.systemui.dagger.DefaultBroadcastReceiverBinder;
21 import com.android.systemui.dagger.DefaultServiceBinder;
22 import com.android.systemui.dagger.DependencyProvider;
23 import com.android.systemui.dagger.SysUIComponent;
24 import com.android.systemui.dagger.SysUISingleton;
25 import com.android.systemui.dagger.SystemUIModule;
26 import com.android.systemui.keyguard.dagger.KeyguardModule;
27 import com.android.systemui.recents.RecentsModule;
28 import com.android.systemui.statusbar.dagger.CentralSurfacesModule;
29 import com.android.systemui.statusbar.NotificationInsetsModule;
30 import com.android.systemui.statusbar.QsFrameTranslateModule;
31 
32 import dagger.Subcomponent;
33 
34 /**
35  * Dagger Subcomponent for Core System UI on Android Go.
36  */
37 @SysUISingleton
38 @Subcomponent(modules = {
39         DependencyProvider.class,
40         SystemUIModule.class,
41         DefaultActivityBinder.class,
42         DefaultBroadcastReceiverBinder.class,
43         DefaultServiceBinder.class,
44         SystemUIGoCoreStartableModule.class,
45         KeyguardModule.class,
46         RecentsModule.class,
47         CentralSurfacesModule.class,
48         NotificationInsetsModule.class,
49         QsFrameTranslateModule.class,
50         SystemUIGoModule.class})
51 public interface SystemUIGoComponent extends SysUIComponent {
52 
53     /**
54      * Builder for a SysUIComponent.
55      */
56     @Subcomponent.Builder
57     interface Builder extends SysUIComponent.Builder {
build()58         SystemUIGoComponent build();
59     }
60 }
61