| 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 "accelerator_registrar.mojom", | 10 "accelerator_registrar.mojom", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 import_dirs = [ | 33 import_dirs = [ |
| 34 get_path_info("../../../..", "abspath"), | 34 get_path_info("../../../..", "abspath"), |
| 35 "//mojo/services", | 35 "//mojo/services", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//cc/ipc:interfaces", | 39 "//cc/ipc:interfaces", |
| 40 "//gpu/ipc/common:interfaces", | 40 "//gpu/ipc/common:interfaces", |
| 41 "//services/ui/public/interfaces/display", | 41 "//services/ui/public/interfaces/display", |
| 42 "//skia/public/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 |
| 48 use_new_wrapper_types = false | 49 use_new_wrapper_types = false |
| 49 } | 50 } |
| 50 | 51 |
| 51 test("ui_struct_traits_unittests") { | 52 test("ui_struct_traits_unittests") { |
| 52 testonly = true | 53 testonly = true |
| 53 | 54 |
| 54 sources = [ | 55 sources = [ |
| 55 "display/display_struct_traits_unittest.cc", | 56 "display/display_struct_traits_unittest.cc", |
| 56 ] | 57 ] |
| 57 | 58 |
| 58 deps = [ | 59 deps = [ |
| 59 "//base", | 60 "//base", |
| 60 "//base/test:test_support", | 61 "//base/test:test_support", |
| 61 "//mojo/edk/test:run_all_unittests", | 62 "//mojo/edk/test:run_all_unittests", |
| 62 "//services/ui/public/interfaces/display:test_interfaces", | 63 "//services/ui/public/interfaces/display:test_interfaces", |
| 63 "//testing/gtest", | 64 "//testing/gtest", |
| 64 "//ui/display/types", | 65 "//ui/display/types", |
| 65 "//ui/gfx:test_support", | 66 "//ui/gfx:test_support", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| OLD | NEW |