| 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 import("//testing/test.gni") |
| 7 | 7 |
| 8 mojom("interfaces") { | 8 mojom("interfaces") { |
| 9 sources = [ | 9 sources = [ |
| 10 "accessibility_manager.mojom", | 10 "accessibility_manager.mojom", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. | 48 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. |
| 49 use_once_callback = false | 49 use_once_callback = false |
| 50 } | 50 } |
| 51 | 51 |
| 52 mojom("constants") { | 52 mojom("constants") { |
| 53 sources = [ | 53 sources = [ |
| 54 "constants.mojom", | 54 "constants.mojom", |
| 55 ] | 55 ] |
| 56 } | 56 } |
| 57 | 57 |
| 58 test("ui_struct_traits_unittests") { | 58 source_set("tests") { |
| 59 testonly = true | 59 testonly = true |
| 60 | 60 |
| 61 sources = [ | 61 sources = [ |
| 62 "cursor/cursor_struct_traits_unittest.cc", | 62 "cursor/cursor_struct_traits_unittest.cc", |
| 63 "ime/ime_struct_traits_unittest.cc", | 63 "ime/ime_struct_traits_unittest.cc", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 deps = [ | 66 deps = [ |
| 67 "//base", | 67 "//base", |
| 68 "//base/test:test_support", | 68 "//base/test:test_support", |
| 69 "//mojo/edk/test:run_all_unittests", | |
| 70 "//services/ui/public/interfaces/cursor", | 69 "//services/ui/public/interfaces/cursor", |
| 71 "//services/ui/public/interfaces/ime:test_interfaces", | 70 "//services/ui/public/interfaces/ime:test_interfaces", |
| 72 "//skia/public/interfaces", | 71 "//skia/public/interfaces", |
| 73 "//testing/gtest", | 72 "//testing/gtest", |
| 74 "//ui/display/types", | 73 "//ui/display/types", |
| 75 "//ui/gfx:test_support", | 74 "//ui/gfx:test_support", |
| 76 ] | 75 ] |
| 77 } | 76 } |
| OLD | NEW |