Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: ash/public/interfaces/BUILD.gn

Issue 2937553002: Create Mojo Struct for user information used in login/lock screen. (Closed)
Patch Set: reuse enum defined in mojom file. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_info.mojom", 20 "ime_info.mojom",
21 "locale.mojom", 21 "locale.mojom",
22 "lock_screen.mojom", 22 "lock_screen.mojom",
23 "login_user_info.mojom",
23 "media.mojom", 24 "media.mojom",
24 "new_window.mojom", 25 "new_window.mojom",
25 "night_light_controller.mojom", 26 "night_light_controller.mojom",
26 "session_controller.mojom", 27 "session_controller.mojom",
27 "shelf.mojom", 28 "shelf.mojom",
28 "shutdown.mojom", 29 "shutdown.mojom",
29 "system_tray.mojom", 30 "system_tray.mojom",
30 "touch_view.mojom", 31 "touch_view.mojom",
31 "tray_action.mojom", 32 "tray_action.mojom",
32 "update.mojom", 33 "update.mojom",
(...skipping 11 matching lines...) Expand all
44 "//skia/public/interfaces", 45 "//skia/public/interfaces",
45 "//ui/events/mojo:interfaces", 46 "//ui/events/mojo:interfaces",
46 "//ui/gfx/image/mojo:interfaces", 47 "//ui/gfx/image/mojo:interfaces",
47 ] 48 ]
48 49
49 component_output_prefix = "ash_public_interfaces_internal" 50 component_output_prefix = "ash_public_interfaces_internal"
50 export_class_attribute = "ASH_PUBLIC_EXPORT" 51 export_class_attribute = "ASH_PUBLIC_EXPORT"
51 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" 52 export_define = "ASH_PUBLIC_IMPLEMENTATION=1"
52 export_header = "ash/public/cpp/ash_public_export.h" 53 export_header = "ash/public/cpp/ash_public_export.h"
53 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698