Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 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_message_params_test.mojom", | |
|
kylechar
2017/01/17 21:39:46
ozone_gpu_struct_traits_test.mojo, also change the
thanhph1
2017/01/17 22:30:30
Done.
| |
| 21 ] | |
| 22 | |
| 23 public_deps = [ | |
| 24 ":interfaces", | |
| 25 ] | |
| 26 } | |
| 27 | |
| 28 test("ozone_struct_traits_unittests") { | |
|
kylechar
2017/01/17 21:39:46
ozone_gpu_struct_traits_unittests, also change the
thanhph1
2017/01/17 22:30:30
Done.
| |
| 29 testonly = true | |
| 30 | |
| 31 sources = [ | |
| 32 "//ui/ozone/common/mojo/ozone_gpu_messages_params_struct_traits_unittest.cc" , | |
|
kylechar
2017/01/17 21:39:46
ozone_gpu_struct_traits_unittest.cc
thanhph1
2017/01/17 22:30:30
Done.
| |
| 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 |