| 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_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 "session_controller.mojom", | 26 "session_controller.mojom", |
| 26 "shelf.mojom", | 27 "shelf.mojom", |
| 27 "shutdown.mojom", | 28 "shutdown.mojom", |
| 28 "system_tray.mojom", | 29 "system_tray.mojom", |
| 29 "touch_view.mojom", | 30 "touch_view.mojom", |
| 30 "tray_action.mojom", | 31 "tray_action.mojom", |
| 31 "update.mojom", | 32 "update.mojom", |
| 32 "user_info.mojom", | 33 "user_info.mojom", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 43 "//skia/public/interfaces", | 44 "//skia/public/interfaces", |
| 44 "//ui/events/mojo:interfaces", | 45 "//ui/events/mojo:interfaces", |
| 45 "//ui/gfx/image/mojo:interfaces", | 46 "//ui/gfx/image/mojo:interfaces", |
| 46 ] | 47 ] |
| 47 | 48 |
| 48 component_output_prefix = "ash_public_interfaces_internal" | 49 component_output_prefix = "ash_public_interfaces_internal" |
| 49 export_class_attribute = "ASH_PUBLIC_EXPORT" | 50 export_class_attribute = "ASH_PUBLIC_EXPORT" |
| 50 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" | 51 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" |
| 51 export_header = "ash/public/cpp/ash_public_export.h" | 52 export_header = "ash/public/cpp/ash_public_export.h" |
| 52 } | 53 } |
| OLD | NEW |