| 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 22 matching lines...) Expand all Loading... |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 import_dirs = [ | 35 import_dirs = [ |
| 36 get_path_info("../../../..", "abspath"), | 36 get_path_info("../../../..", "abspath"), |
| 37 "//mojo/services", | 37 "//mojo/services", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 public_deps = [ | 40 public_deps = [ |
| 41 "//cc/ipc:interfaces", | 41 "//cc/ipc:interfaces", |
| 42 "//gpu/ipc/common:interfaces", | 42 "//gpu/ipc/common:interfaces", |
| 43 "//services/ui/public/interfaces/display", |
| 43 "//ui/events/mojo:interfaces", | 44 "//ui/events/mojo:interfaces", |
| 44 "//ui/gfx/geometry/mojo", | 45 "//ui/gfx/geometry/mojo", |
| 45 "//ui/gfx/mojo", | 46 "//ui/gfx/mojo", |
| 46 "//ui/platform_window/mojo:interfaces", | 47 "//ui/platform_window/mojo:interfaces", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| 49 | 50 |
| 50 test("ui_struct_traits_unittests") { | 51 test("ui_struct_traits_unittests") { |
| 51 sources = [ | 52 sources = [ |
| 52 "display/display_struct_traits_unittest.cc", | 53 "display/display_struct_traits_unittest.cc", |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 deps = [ | 56 deps = [ |
| 56 "//base", | 57 "//base", |
| 57 "//base/test:test_support", | 58 "//base/test:test_support", |
| 58 "//mojo/edk/test:run_all_unittests", | 59 "//mojo/edk/test:run_all_unittests", |
| 59 "//services/ui/public/interfaces/display:test_interfaces", | 60 "//services/ui/public/interfaces/display:test_interfaces", |
| 60 "//testing/gtest", | 61 "//testing/gtest", |
| 61 "//ui/display/types", | 62 "//ui/display/types", |
| 62 "//ui/gfx:test_support", | 63 "//ui/gfx:test_support", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| OLD | NEW |