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

Side by Side Diff: services/view_manager/BUILD.gn

Issue 790213002: Restructure public side of geometry service. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Nits Created 6 years 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
« no previous file with comments | « services/surfaces/BUILD.gn ('k') | services/view_manager/test_change_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 7
8 mojo_native_application("view_manager") { 8 mojo_native_application("view_manager") {
9 sources = [ 9 sources = [
10 "main.cc", 10 "main.cc",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 "//cc/surfaces", 58 "//cc/surfaces",
59 "//cc/surfaces:surface_id", 59 "//cc/surfaces:surface_id",
60 "//mojo/application", 60 "//mojo/application",
61 "//mojo/common", 61 "//mojo/common",
62 "//mojo/converters/geometry", 62 "//mojo/converters/geometry",
63 "//mojo/converters/input_events", 63 "//mojo/converters/input_events",
64 "//mojo/converters/surfaces", 64 "//mojo/converters/surfaces",
65 "//mojo/public/cpp/bindings", 65 "//mojo/public/cpp/bindings",
66 "//mojo/public/cpp/bindings:callback", 66 "//mojo/public/cpp/bindings:callback",
67 "//mojo/public/interfaces/application", 67 "//mojo/public/interfaces/application",
68 "//mojo/services/public/interfaces/geometry", 68 "//mojo/services/geometry/public/interfaces",
69 "//mojo/services/public/interfaces/input_events", 69 "//mojo/services/public/interfaces/input_events",
70 "//mojo/services/public/interfaces/native_viewport", 70 "//mojo/services/public/interfaces/native_viewport",
71 "//mojo/services/surfaces/public/cpp", 71 "//mojo/services/surfaces/public/cpp",
72 "//mojo/services/surfaces/public/interfaces", 72 "//mojo/services/surfaces/public/interfaces",
73 "//mojo/services/view_manager/public/interfaces", 73 "//mojo/services/view_manager/public/interfaces",
74 "//mojo/services/view_manager/public/cpp:common", 74 "//mojo/services/view_manager/public/cpp:common",
75 "//mojo/services/window_manager/public/interfaces", 75 "//mojo/services/window_manager/public/interfaces",
76 "//ui/gfx", 76 "//ui/gfx",
77 "//ui/gfx/geometry", 77 "//ui/gfx/geometry",
78 ] 78 ]
79 } 79 }
80 80
81 source_set("test_support") { 81 source_set("test_support") {
82 testonly = true 82 testonly = true
83 83
84 sources = [ 84 sources = [
85 "test_change_tracker.cc", 85 "test_change_tracker.cc",
86 "test_change_tracker.h", 86 "test_change_tracker.h",
87 ] 87 ]
88 88
89 deps = [ 89 deps = [
90 "//base", 90 "//base",
91 "//mojo/common", 91 "//mojo/common",
92 "//mojo/public/cpp/bindings:bindings", 92 "//mojo/public/cpp/bindings:bindings",
93 "//mojo/services/public/interfaces/geometry", 93 "//mojo/services/geometry/public/interfaces",
94 "//mojo/services/view_manager/public/cpp:common", 94 "//mojo/services/view_manager/public/cpp:common",
95 "//mojo/services/view_manager/public/interfaces", 95 "//mojo/services/view_manager/public/interfaces",
96 ] 96 ]
97 } 97 }
98 98
99 test("view_manager_service_unittests") { 99 test("view_manager_service_unittests") {
100 sources = [ 100 sources = [
101 "animation_runner_unittest.cc", 101 "animation_runner_unittest.cc",
102 "scheduled_animation_group_unittest.cc", 102 "scheduled_animation_group_unittest.cc",
103 "test_server_view_delegate.cc", 103 "test_server_view_delegate.cc",
104 "test_server_view_delegate.h", 104 "test_server_view_delegate.h",
105 "view_coordinate_conversions_unittest.cc", 105 "view_coordinate_conversions_unittest.cc",
106 "view_manager_service_unittest.cc", 106 "view_manager_service_unittest.cc",
107 ] 107 ]
108 108
109 deps = [ 109 deps = [
110 ":test_support", 110 ":test_support",
111 ":view_manager_lib", 111 ":view_manager_lib",
112 "//base", 112 "//base",
113 "//base/test:test_support", 113 "//base/test:test_support",
114 "//mojo/converters/geometry", 114 "//mojo/converters/geometry",
115 "//mojo/converters/input_events", 115 "//mojo/converters/input_events",
116 "//mojo/edk/test:run_all_unittests", 116 "//mojo/edk/test:run_all_unittests",
117 "//mojo/environment:chromium", 117 "//mojo/environment:chromium",
118 "//mojo/public/cpp/bindings", 118 "//mojo/public/cpp/bindings",
119 "//mojo/public/interfaces/application", 119 "//mojo/public/interfaces/application",
120 "//mojo/services/geometry/public/interfaces",
120 "//mojo/services/public/cpp/native_viewport:args", 121 "//mojo/services/public/cpp/native_viewport:args",
121 "//mojo/services/public/interfaces/geometry",
122 "//mojo/services/view_manager/public/cpp", 122 "//mojo/services/view_manager/public/cpp",
123 "//mojo/services/view_manager/public/interfaces", 123 "//mojo/services/view_manager/public/interfaces",
124 "//mojo/services/window_manager/public/interfaces", 124 "//mojo/services/window_manager/public/interfaces",
125 "//testing/gtest", 125 "//testing/gtest",
126 "//ui/gfx", 126 "//ui/gfx",
127 "//ui/gfx:test_support", 127 "//ui/gfx:test_support",
128 "//ui/gfx/geometry", 128 "//ui/gfx/geometry",
129 ] 129 ]
130 130
131 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links. 131 if (!is_android) { # TODO(GYP) Enable on Android when osmesa links.
132 deps += [ "//third_party/mesa:osmesa" ] 132 deps += [ "//third_party/mesa:osmesa" ]
133 } 133 }
134 } 134 }
135 135
136 mojo_native_application("view_manager_service_apptests") { 136 mojo_native_application("view_manager_service_apptests") {
137 testonly = true 137 testonly = true
138 138
139 sources = [ 139 sources = [
140 "view_manager_service_apptest.cc", 140 "view_manager_service_apptest.cc",
141 ] 141 ]
142 142
143 deps = [ 143 deps = [
144 ":test_support", 144 ":test_support",
145 "//base", 145 "//base",
146 "//mojo/application", 146 "//mojo/application",
147 "//mojo/application:test_support", 147 "//mojo/application:test_support",
148 "//mojo/common", 148 "//mojo/common",
149 "//mojo/public/cpp/bindings", 149 "//mojo/public/cpp/bindings",
150 "//mojo/services/public/interfaces/geometry", 150 "//mojo/services/geometry/public/interfaces",
151 "//mojo/services/view_manager/public/interfaces", 151 "//mojo/services/view_manager/public/interfaces",
152 "//mojo/services/window_manager/public/interfaces", 152 "//mojo/services/window_manager/public/interfaces",
153 ] 153 ]
154 } 154 }
OLDNEW
« no previous file with comments | « services/surfaces/BUILD.gn ('k') | services/view_manager/test_change_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698