| 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 16 matching lines...) Expand all Loading... |
| 27 "window_tree_constants.mojom", | 27 "window_tree_constants.mojom", |
| 28 "window_tree_host.mojom", | 28 "window_tree_host.mojom", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 import_dirs = [ | 31 import_dirs = [ |
| 32 get_path_info("../../../..", "abspath"), | 32 get_path_info("../../../..", "abspath"), |
| 33 "//mojo/services", | 33 "//mojo/services", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 ":constants", |
| 37 "//cc/ipc:interfaces", | 38 "//cc/ipc:interfaces", |
| 38 "//gpu/ipc/common:interfaces", | 39 "//gpu/ipc/common:interfaces", |
| 39 "//services/ui/public/interfaces/display", | 40 "//services/ui/public/interfaces/display", |
| 40 "//ui/events/mojo:interfaces", | 41 "//ui/events/mojo:interfaces", |
| 41 "//ui/gfx/geometry/mojo", | 42 "//ui/gfx/geometry/mojo", |
| 42 "//ui/gfx/mojo", | 43 "//ui/gfx/mojo", |
| 43 "//ui/platform_window/mojo:interfaces", | 44 "//ui/platform_window/mojo:interfaces", |
| 44 ] | 45 ] |
| 45 | 46 |
| 46 use_new_wrapper_types = false | 47 use_new_wrapper_types = false |
| 47 } | 48 } |
| 48 | 49 |
| 50 mojom("constants") { |
| 51 sources = [ |
| 52 "constants.mojom", |
| 53 ] |
| 54 } |
| 55 |
| 49 test("ui_struct_traits_unittests") { | 56 test("ui_struct_traits_unittests") { |
| 50 testonly = true | 57 testonly = true |
| 51 | 58 |
| 52 sources = [ | 59 sources = [ |
| 53 "display/display_struct_traits_unittest.cc", | 60 "display/display_struct_traits_unittest.cc", |
| 54 ] | 61 ] |
| 55 | 62 |
| 56 deps = [ | 63 deps = [ |
| 57 "//base", | 64 "//base", |
| 58 "//base/test:test_support", | 65 "//base/test:test_support", |
| 59 "//mojo/edk/test:run_all_unittests", | 66 "//mojo/edk/test:run_all_unittests", |
| 60 "//services/ui/public/interfaces/display:test_interfaces", | 67 "//services/ui/public/interfaces/display:test_interfaces", |
| 61 "//testing/gtest", | 68 "//testing/gtest", |
| 62 "//ui/display/types", | 69 "//ui/display/types", |
| 63 "//ui/gfx:test_support", | 70 "//ui/gfx:test_support", |
| 64 ] | 71 ] |
| 65 } | 72 } |
| OLD | NEW |