OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") |
6 | 7 |
7 mojom("interfaces") { | 8 mojom("interfaces") { |
8 sources = [ | 9 sources = [ |
9 "accelerator_registrar.mojom", | 10 "accelerator_registrar.mojom", |
10 "accessibility_manager.mojom", | 11 "accessibility_manager.mojom", |
11 "animations.mojom", | 12 "animations.mojom", |
12 "channel_handle.mojom", | 13 "channel_handle.mojom", |
13 "clipboard.mojom", | 14 "clipboard.mojom", |
14 "command_buffer.mojom", | 15 "command_buffer.mojom", |
15 "cursor.mojom", | 16 "cursor.mojom", |
(...skipping 22 matching lines...) Expand all Loading... |
38 | 39 |
39 public_deps = [ | 40 public_deps = [ |
40 "//cc/ipc:interfaces", | 41 "//cc/ipc:interfaces", |
41 "//gpu/ipc/common:interfaces", | 42 "//gpu/ipc/common:interfaces", |
42 "//ui/events/mojo:interfaces", | 43 "//ui/events/mojo:interfaces", |
43 "//ui/gfx/geometry/mojo", | 44 "//ui/gfx/geometry/mojo", |
44 "//ui/gfx/mojo", | 45 "//ui/gfx/mojo", |
45 "//ui/platform_window/mojo:interfaces", | 46 "//ui/platform_window/mojo:interfaces", |
46 ] | 47 ] |
47 } | 48 } |
| 49 |
| 50 test("ui_struct_traits_unittests") { |
| 51 sources = [ |
| 52 "display/display_struct_traits_unittest.cc", |
| 53 ] |
| 54 |
| 55 deps = [ |
| 56 "//base", |
| 57 "//base/test:test_support", |
| 58 "//mojo/edk/test:run_all_unittests", |
| 59 "//services/ui/public/interfaces/display:test_interfaces", |
| 60 "//testing/gtest", |
| 61 "//ui/display/types", |
| 62 "//ui/gfx:test_support", |
| 63 ] |
| 64 } |
OLD | NEW |