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 = "//ui/display/mojo/display.mojom" |
| 6 public_headers = [ "//ui/display/display.h" ] |
| 7 traits_headers = [ "//ui/display/mojo/display_struct_traits.h" ] |
| 8 sources = [ |
| 9 "//ui/display/mojo/display_struct_traits.cc", |
| 10 ] |
| 11 public_deps = [ |
| 12 "//ui/display", |
| 13 ] |
| 14 deps = [ |
| 15 "//ui/gfx/geometry", |
| 16 ] |
| 17 |
| 18 type_mappings = [ |
| 19 "display.mojom.Display=display::Display", |
| 20 "display.mojom.DisplayRotation=display::Display::Rotation", |
| 21 "display.mojom.TouchSupport=display::Display::TouchSupport", |
| 22 ] |
OLD | NEW |