Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
|
rjkroege
2017/01/20 18:56:13
Why is this not in ui/ozone/public/interfaces? Or
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//mojo/public/tools/bindings/mojom.gni") | |
| 6 import("//testing/test.gni") | |
| 7 | |
| 8 mojom("interfaces") { | |
| 9 sources = [ | |
| 10 "display_mode_params.mojom", | |
| 11 ] | |
| 12 | |
| 13 public_deps = [ | |
| 14 "//ui/gfx/geometry/mojo", | |
| 15 ] | |
| 16 } | |
| 17 | |
| 18 mojom("test_interfaces") { | |
| 19 sources = [ | |
| 20 "ozone_gpu_struct_traits_test.mojom", | |
| 21 ] | |
| 22 | |
| 23 public_deps = [ | |
| 24 ":interfaces", | |
| 25 ] | |
| 26 } | |
| 27 | |
| 28 test("ozone_gpu_struct_traits_unittests") { | |
| 29 testonly = true | |
| 30 | |
| 31 sources = [ | |
| 32 "//ui/ozone/common/mojo/ozone_gpu_struct_traits_unittest.cc", | |
| 33 ] | |
| 34 | |
| 35 deps = [ | |
| 36 "//base", | |
| 37 "//base/test:test_support", | |
| 38 "//mojo/edk/test:run_all_unittests", | |
| 39 "//testing/gtest", | |
| 40 "//ui/gfx:test_support", | |
| 41 "//ui/ozone/common:common", | |
| 42 "//ui/ozone/common/mojo:interfaces", | |
| 43 "//ui/ozone/common/mojo:test_interfaces", | |
| 44 ] | |
| 45 } | |
| OLD | NEW |