OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 mojom = "//ash/public/interfaces/session_controller.mojom" | |
6 public_headers = [ | |
7 "//ash/public/cpp/session_types.h", | |
8 "//components/session_manager/session_manager_types.h", | |
9 "//components/user_manager/user_type.h", | |
10 ] | |
11 traits_headers = [ "//ash/public/interfaces/session_controller_traits.h" ] | |
12 deps = [ | |
James Cook
2016/12/01 23:01:44
I think this should be public_deps, since anyone w
xiyuan
2016/12/06 00:46:34
Done.
| |
13 "//ash/public/cpp", | |
14 "//components/session_manager:base", | |
15 "//components/user_manager", | |
16 ] | |
17 type_mappings = [ | |
18 "ash.mojom.AddUserSessionPolicy=ash::AddUserSessionPolicy", | |
19 "ash.mojom.SessionState=session_manager::SessionState", | |
20 "ash.mojom.UserType=user_manager::UserType", | |
21 ] | |
OLD | NEW |