| 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). |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "new_window.mojom", | 21 "new_window.mojom", |
| 22 "session_controller.mojom", | 22 "session_controller.mojom", |
| 23 "shelf.mojom", | 23 "shelf.mojom", |
| 24 "shutdown.mojom", | 24 "shutdown.mojom", |
| 25 "system_tray.mojom", | 25 "system_tray.mojom", |
| 26 "touch_view.mojom", | 26 "touch_view.mojom", |
| 27 "update.mojom", | 27 "update.mojom", |
| 28 "volume.mojom", | 28 "volume.mojom", |
| 29 "vpn_list.mojom", | 29 "vpn_list.mojom", |
| 30 "wallpaper.mojom", | 30 "wallpaper.mojom", |
| 31 "window_pin_type.mojom", |
| 31 "window_style.mojom", | 32 "window_style.mojom", |
| 32 ] | 33 ] |
| 33 | 34 |
| 34 public_deps = [ | 35 public_deps = [ |
| 35 "//components/signin/public/interfaces", | 36 "//components/signin/public/interfaces", |
| 36 "//mojo/common:common_custom_types", | 37 "//mojo/common:common_custom_types", |
| 37 "//skia/public/interfaces", | 38 "//skia/public/interfaces", |
| 38 "//ui/events/mojo:interfaces", | 39 "//ui/events/mojo:interfaces", |
| 39 "//ui/gfx/image/mojo:interfaces", | 40 "//ui/gfx/image/mojo:interfaces", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 export_class_attribute = "ASH_PUBLIC_EXPORT" | 43 export_class_attribute = "ASH_PUBLIC_EXPORT" |
| 43 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" | 44 export_define = "ASH_PUBLIC_IMPLEMENTATION=1" |
| 44 export_header = "ash/public/cpp/ash_public_export.h" | 45 export_header = "ash/public/cpp/ash_public_export.h" |
| 45 } | 46 } |
| OLD | NEW |