OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 # Depend upon //ash/public/cpp:ash_public_cpp, which has a public_dep on this. | 7 # Depend upon //ash/public/cpp:ash_public_cpp, which has a public_dep on this. |
8 # The two targets must be bundled together as the typemaps depend upon | 8 # The two targets must be bundled together as the typemaps depend upon |
9 # //ash/public/cpp, and //ash/public/cpp needs to depend on this for generated | 9 # //ash/public/cpp, and //ash/public/cpp needs to depend on this for generated |
10 # code (such as enums and constants). | 10 # code (such as enums and constants). |
11 mojom("interfaces_internal") { | 11 mojom("interfaces_internal") { |
12 visibility = [ "//ash/public/cpp:ash_public_cpp" ] | 12 visibility = [ "//ash/public/cpp:ash_public_cpp" ] |
13 | 13 |
14 sources = [ | 14 sources = [ |
15 "accelerator_controller.mojom", | 15 "accelerator_controller.mojom", |
16 "ash_display_controller.mojom", | 16 "ash_display_controller.mojom", |
17 "cast_config.mojom", | 17 "cast_config.mojom", |
18 "constants.mojom", | 18 "constants.mojom", |
19 "event_properties.mojom", | 19 "event_properties.mojom", |
20 "ime_controller.mojom", | 20 "ime_controller.mojom", |
21 "ime_info.mojom", | 21 "ime_info.mojom", |
22 "locale.mojom", | 22 "locale.mojom", |
23 "lock_screen.mojom", | 23 "lock_screen.mojom", |
| 24 "login_user_info.mojom", |
24 "media.mojom", | 25 "media.mojom", |
25 "new_window.mojom", | 26 "new_window.mojom", |
26 "night_light_controller.mojom", | 27 "night_light_controller.mojom", |
27 "session_controller.mojom", | 28 "session_controller.mojom", |
28 "shelf.mojom", | 29 "shelf.mojom", |
29 "shutdown.mojom", | 30 "shutdown.mojom", |
30 "system_tray.mojom", | 31 "system_tray.mojom", |
31 "touch_view.mojom", | 32 "touch_view.mojom", |
32 "tray_action.mojom", | 33 "tray_action.mojom", |
33 "update.mojom", | 34 "update.mojom", |
34 "user_info.mojom", | 35 "user_info.mojom", |
35 "volume.mojom", | 36 "volume.mojom", |
36 "vpn_list.mojom", | 37 "vpn_list.mojom", |
37 "wallpaper.mojom", | 38 "wallpaper.mojom", |
38 "window_pin_type.mojom", | 39 "window_pin_type.mojom", |
39 "window_style.mojom", | 40 "window_style.mojom", |
40 ] | 41 ] |
41 | 42 |
42 public_deps = [ | 43 public_deps = [ |
| 44 "//components/proximity_auth/public/interfaces", |
43 "//components/signin/public/interfaces", | 45 "//components/signin/public/interfaces", |
44 "//mojo/common:common_custom_types", | 46 "//mojo/common:common_custom_types", |
45 "//skia/public/interfaces", | 47 "//skia/public/interfaces", |
46 "//ui/events/mojo:interfaces", | 48 "//ui/events/mojo:interfaces", |
47 "//ui/gfx/image/mojo:interfaces", | 49 "//ui/gfx/image/mojo:interfaces", |
48 ] | 50 ] |
49 | 51 |
50 component_output_prefix = "ash_public_interfaces_internal" | 52 component_output_prefix = "ash_public_interfaces_internal" |
51 export_class_attribute = "ASH_PUBLIC_EXPORT" | 53 export_class_attribute = "ASH_PUBLIC_EXPORT" |
52 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" | 54 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" |
53 export_header = "ash/public/cpp/ash_public_export.h" | 55 export_header = "ash/public/cpp/ash_public_export.h" |
54 } | 56 } |
OLD | NEW |