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

Side by Side Diff: components/mus/public/cpp/tests/BUILD.gn

Issue 2008193002: Change mojo geometry structs from using type converters to StructTraits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("unittest_support") { 8 source_set("unittest_support") {
9 testonly = true 9 testonly = true
10 10
11 sources = [ 11 sources = [
12 "test_window.h", 12 "test_window.h",
13 "test_window_tree.cc", 13 "test_window_tree.cc",
14 "test_window_tree.h", 14 "test_window_tree.h",
15 "test_window_tree_connection_setup.cc", 15 "test_window_tree_connection_setup.cc",
16 "test_window_tree_connection_setup.h", 16 "test_window_tree_connection_setup.h",
17 "window_tree_client_impl_private.cc", 17 "window_tree_client_impl_private.cc",
18 "window_tree_client_impl_private.h", 18 "window_tree_client_impl_private.h",
19 ] 19 ]
20 20
21 deps = [ 21 deps = [
22 "//base", 22 "//base",
23 "//components/mus/public/cpp", 23 "//components/mus/public/cpp",
24 "//mojo/converters/geometry",
25 "//testing/gtest", 24 "//testing/gtest",
26 ] 25 ]
27 } 26 }
28 27
29 source_set("test_support") { 28 source_set("test_support") {
30 testonly = true 29 testonly = true
31 30
32 sources = [ 31 sources = [
33 "window_server_shelltest_base.cc", 32 "window_server_shelltest_base.cc",
34 "window_server_shelltest_base.h", 33 "window_server_shelltest_base.h",
(...skipping 23 matching lines...) Expand all
58 "window_unittest.cc", 57 "window_unittest.cc",
59 ] 58 ]
60 59
61 deps = [ 60 deps = [
62 ":unittest_support", 61 ":unittest_support",
63 "//base", 62 "//base",
64 "//base/test:test_support", 63 "//base/test:test_support",
65 "//components/mus/common:mus_common", 64 "//components/mus/common:mus_common",
66 "//components/mus/public/cpp", 65 "//components/mus/public/cpp",
67 "//mojo/common:common_base", 66 "//mojo/common:common_base",
68 "//mojo/converters/geometry",
69 "//mojo/converters/input_events", 67 "//mojo/converters/input_events",
70 "//mojo/edk/system", 68 "//mojo/edk/system",
71 "//mojo/public/cpp/system", 69 "//mojo/public/cpp/system",
72 "//services/shell/public/cpp", 70 "//services/shell/public/cpp",
73 "//testing/gtest", 71 "//testing/gtest",
74 "//ui/events", 72 "//ui/events",
75 "//ui/gfx:test_support", 73 "//ui/gfx:test_support",
76 "//ui/gfx/geometry", 74 "//ui/gfx/geometry",
77 "//ui/mojo/geometry:interfaces", 75 "//ui/mojo/geometry:interfaces",
78 ] 76 ]
79 77
80 if (use_x11) { 78 if (use_x11) {
81 deps += [ "//ui/gfx/x" ] 79 deps += [ "//ui/gfx/x" ]
82 } 80 }
83 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698