Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: ui/ozone/common/mojo/BUILD.gn

Issue 2636073002: Create mojom and StructTraits for ui/display/types/display_mode.cc (Closed)
Patch Set: fix comment Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « ui/ozone/common/BUILD.gn ('k') | ui/ozone/common/mojo/DEPS » ('j') | ui/ozone/common/mojo/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698