blob: c2847c88785baf85d1ffa61c887b2360dd09d4fb [file] [log] [blame]
Govinda Wasserman2e86fb62019-08-13 11:35:44 -04001/*
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
17package com.android.systemui;
18
Dave Mankofff4736812019-10-18 17:25:50 -040019import com.android.systemui.dagger.DependencyBinder;
20import com.android.systemui.dagger.DependencyProvider;
21import com.android.systemui.dagger.SystemServicesModule;
22import com.android.systemui.dagger.SystemUIModule;
23import com.android.systemui.dagger.SystemUIRootComponent;
24
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040025import javax.inject.Singleton;
26
27import dagger.Component;
28
29@Singleton
30@Component(
31 modules = {
32 DependencyProvider.class,
33 DependencyBinder.class,
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040034 SystemUIFactory.ContextHolder.class,
Dave Mankofff4736812019-10-18 17:25:50 -040035 SystemServicesModule.class,
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040036 SystemUIModule.class,
Heemin Seog1a39dea2019-10-16 15:58:21 -070037 CarSystemUIModule.class,
38 CarSystemUIBinder.class
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040039 })
40interface CarSystemUIRootComponent extends SystemUIRootComponent {
41
42}