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

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

Issue 1695783002: IPC::ParamTraits for ui::Event (towards ui::Events over mojo IPC) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicate MUS_COMMON_EXPORT in header and impl Created 4 years, 9 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 sources = [ 9 sources = [
10 "test_window.h", 10 "test_window.h",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "window_server_test_suite.cc", 42 "window_server_test_suite.cc",
43 "window_server_test_suite.h", 43 "window_server_test_suite.h",
44 "window_tree_client_impl_unittest.cc", 44 "window_tree_client_impl_unittest.cc",
45 "window_unittest.cc", 45 "window_unittest.cc",
46 ] 46 ]
47 47
48 deps = [ 48 deps = [
49 ":unittest_support", 49 ":unittest_support",
50 "//base", 50 "//base",
51 "//base/test:test_support", 51 "//base/test:test_support",
52 "//components/mus/common", 52 "//components/mus/common:mus_common",
53 "//components/mus/public/cpp", 53 "//components/mus/public/cpp",
54 "//mojo/common:common_base", 54 "//mojo/common:common_base",
55 "//mojo/converters/geometry", 55 "//mojo/converters/geometry",
56 "//mojo/converters/input_events", 56 "//mojo/converters/input_events",
57 "//mojo/edk/system", 57 "//mojo/edk/system",
58 "//mojo/gles2", 58 "//mojo/gles2",
59 "//mojo/platform_handle:platform_handle_impl", 59 "//mojo/platform_handle:platform_handle_impl",
60 "//mojo/public/cpp/system", 60 "//mojo/public/cpp/system",
61 "//mojo/shell/public/cpp", 61 "//mojo/shell/public/cpp",
62 "//testing/gtest", 62 "//testing/gtest",
63 "//ui/events", 63 "//ui/events",
64 "//ui/gfx:test_support", 64 "//ui/gfx:test_support",
65 "//ui/gfx/geometry", 65 "//ui/gfx/geometry",
66 "//ui/mojo/geometry:interfaces", 66 "//ui/mojo/geometry:interfaces",
67 ] 67 ]
68 68
69 if (use_x11) { 69 if (use_x11) {
70 deps += [ "//ui/gfx/x" ] 70 deps += [ "//ui/gfx/x" ]
71 } 71 }
72 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698