OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("arc") { | 8 static_library("arc") { |
9 sources = [ | 9 sources = [ |
10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "//chromeos:power_manager_proto", | 71 "//chromeos:power_manager_proto", |
72 "//components/exo", | 72 "//components/exo", |
73 "//components/google/core/browser", | 73 "//components/google/core/browser", |
74 "//components/onc", | 74 "//components/onc", |
75 "//components/prefs", | 75 "//components/prefs", |
76 "//components/signin/core/account_id", | 76 "//components/signin/core/account_id", |
77 "//components/user_manager", | 77 "//components/user_manager", |
78 "//device/bluetooth", | 78 "//device/bluetooth", |
79 "//google_apis", | 79 "//google_apis", |
80 "//ipc:ipc", | 80 "//ipc:ipc", |
81 "//ipc/mojo:mojo", | |
82 "//mojo/edk/system", | 81 "//mojo/edk/system", |
83 "//skia", | 82 "//skia", |
84 "//third_party/re2:re2", | 83 "//third_party/re2:re2", |
85 "//ui/arc", | 84 "//ui/arc", |
86 "//ui/aura", | 85 "//ui/aura", |
87 "//ui/base:base", | 86 "//ui/base:base", |
88 "//ui/base/ime", | 87 "//ui/base/ime", |
89 "//ui/display:display", | 88 "//ui/display:display", |
90 "//ui/events", | 89 "//ui/events", |
91 "//ui/events:dom_keycode_converter", | 90 "//ui/events:dom_keycode_converter", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 "intent_helper/font_size_util_unittest.cc", | 165 "intent_helper/font_size_util_unittest.cc", |
167 "intent_helper/link_handler_model_impl_unittest.cc", | 166 "intent_helper/link_handler_model_impl_unittest.cc", |
168 ] | 167 ] |
169 | 168 |
170 deps = [ | 169 deps = [ |
171 ":arc", | 170 ":arc", |
172 ":arc_bindings", | 171 ":arc_bindings", |
173 ":arc_test_support", | 172 ":arc_test_support", |
174 "//base", | 173 "//base", |
175 "//chromeos", | 174 "//chromeos", |
176 "//ipc/mojo:mojo", | |
177 "//mojo/public/cpp/system:system", | 175 "//mojo/public/cpp/system:system", |
178 "//testing/gtest", | 176 "//testing/gtest", |
179 "//ui/aura", | 177 "//ui/aura", |
180 "//ui/base:test_support", | 178 "//ui/base:test_support", |
181 "//ui/base/ime", | 179 "//ui/base/ime", |
182 "//ui/events", | 180 "//ui/events", |
183 "//ui/events:dom_keycode_converter", | 181 "//ui/events:dom_keycode_converter", |
184 "//url:url", | 182 "//url:url", |
185 ] | 183 ] |
186 } | 184 } |
(...skipping 13 matching lines...) Expand all Loading... |
200 sources = [ | 198 sources = [ |
201 "standalone/arc_standalone_bridge_runner.cc", | 199 "standalone/arc_standalone_bridge_runner.cc", |
202 "standalone/arc_standalone_bridge_runner.h", | 200 "standalone/arc_standalone_bridge_runner.h", |
203 ] | 201 ] |
204 | 202 |
205 deps = [ | 203 deps = [ |
206 ":arc", | 204 ":arc", |
207 ":arc_standalone_service", | 205 ":arc_standalone_service", |
208 "//base", | 206 "//base", |
209 "//ipc:ipc", | 207 "//ipc:ipc", |
210 "//ipc/mojo:mojo", | |
211 ] | 208 ] |
212 } | 209 } |
213 | 210 |
214 test("arc_standalone_service_unittests") { | 211 test("arc_standalone_service_unittests") { |
215 sources = [ | 212 sources = [ |
216 "standalone/service_helper_unittest.cc", | 213 "standalone/service_helper_unittest.cc", |
217 ] | 214 ] |
218 | 215 |
219 deps = [ | 216 deps = [ |
220 ":arc_standalone_service", | 217 ":arc_standalone_service", |
221 "//base/test:test_support", | 218 "//base/test:test_support", |
222 "//testing/gtest", | 219 "//testing/gtest", |
223 ] | 220 ] |
224 } | 221 } |
225 | 222 |
226 executable("arc_standalone_bridge") { | 223 executable("arc_standalone_bridge") { |
227 sources = [ | 224 sources = [ |
228 "standalone/arc_standalone_bridge_main.cc", | 225 "standalone/arc_standalone_bridge_main.cc", |
229 ] | 226 ] |
230 | 227 |
231 deps = [ | 228 deps = [ |
232 ":arc_standalone", | 229 ":arc_standalone", |
233 ":arc_standalone_service", | 230 ":arc_standalone_service", |
234 "//base", | 231 "//base", |
235 "//ipc:ipc", | 232 "//ipc:ipc", |
236 "//ipc/mojo:mojo", | |
237 "//mojo/edk/system", | 233 "//mojo/edk/system", |
238 ] | 234 ] |
239 } | 235 } |
OLD | NEW |