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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "//chromeos:power_manager_proto", | 70 "//chromeos:power_manager_proto", |
71 "//components/exo", | 71 "//components/exo", |
72 "//components/google/core/browser", | 72 "//components/google/core/browser", |
73 "//components/onc", | 73 "//components/onc", |
74 "//components/prefs", | 74 "//components/prefs", |
75 "//components/signin/core/account_id", | 75 "//components/signin/core/account_id", |
76 "//components/user_manager", | 76 "//components/user_manager", |
77 "//device/bluetooth", | 77 "//device/bluetooth", |
78 "//google_apis", | 78 "//google_apis", |
79 "//ipc:ipc", | 79 "//ipc:ipc", |
80 "//ipc/mojo:mojo", | |
81 "//mojo/edk/system", | 80 "//mojo/edk/system", |
82 "//skia", | 81 "//skia", |
83 "//third_party/re2:re2", | 82 "//third_party/re2:re2", |
84 "//ui/arc", | 83 "//ui/arc", |
85 "//ui/aura", | 84 "//ui/aura", |
86 "//ui/base:base", | 85 "//ui/base:base", |
87 "//ui/base/ime", | 86 "//ui/base/ime", |
88 "//ui/display:display", | 87 "//ui/display:display", |
89 "//ui/events", | 88 "//ui/events", |
90 "//ui/events:dom_keycode_converter", | 89 "//ui/events:dom_keycode_converter", |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 "intent_helper/font_size_util_unittest.cc", | 161 "intent_helper/font_size_util_unittest.cc", |
163 "intent_helper/link_handler_model_impl_unittest.cc", | 162 "intent_helper/link_handler_model_impl_unittest.cc", |
164 ] | 163 ] |
165 | 164 |
166 deps = [ | 165 deps = [ |
167 ":arc", | 166 ":arc", |
168 ":arc_bindings", | 167 ":arc_bindings", |
169 ":arc_test_support", | 168 ":arc_test_support", |
170 "//base", | 169 "//base", |
171 "//chromeos", | 170 "//chromeos", |
172 "//ipc/mojo:mojo", | |
173 "//mojo/public/cpp/system:system", | 171 "//mojo/public/cpp/system:system", |
174 "//testing/gtest", | 172 "//testing/gtest", |
175 "//ui/aura", | 173 "//ui/aura", |
176 "//ui/base:test_support", | 174 "//ui/base:test_support", |
177 "//ui/base/ime", | 175 "//ui/base/ime", |
178 "//ui/events", | 176 "//ui/events", |
179 "//ui/events:dom_keycode_converter", | 177 "//ui/events:dom_keycode_converter", |
180 "//url:url", | 178 "//url:url", |
181 ] | 179 ] |
182 } | 180 } |
(...skipping 13 matching lines...) Expand all Loading... |
196 sources = [ | 194 sources = [ |
197 "standalone/arc_standalone_bridge_runner.cc", | 195 "standalone/arc_standalone_bridge_runner.cc", |
198 "standalone/arc_standalone_bridge_runner.h", | 196 "standalone/arc_standalone_bridge_runner.h", |
199 ] | 197 ] |
200 | 198 |
201 deps = [ | 199 deps = [ |
202 ":arc", | 200 ":arc", |
203 ":arc_standalone_service", | 201 ":arc_standalone_service", |
204 "//base", | 202 "//base", |
205 "//ipc:ipc", | 203 "//ipc:ipc", |
206 "//ipc/mojo:mojo", | |
207 ] | 204 ] |
208 } | 205 } |
209 | 206 |
210 test("arc_standalone_service_unittests") { | 207 test("arc_standalone_service_unittests") { |
211 sources = [ | 208 sources = [ |
212 "standalone/service_helper_unittest.cc", | 209 "standalone/service_helper_unittest.cc", |
213 ] | 210 ] |
214 | 211 |
215 deps = [ | 212 deps = [ |
216 ":arc_standalone_service", | 213 ":arc_standalone_service", |
217 "//base/test:test_support", | 214 "//base/test:test_support", |
218 "//testing/gtest", | 215 "//testing/gtest", |
219 ] | 216 ] |
220 } | 217 } |
221 | 218 |
222 executable("arc_standalone_bridge") { | 219 executable("arc_standalone_bridge") { |
223 sources = [ | 220 sources = [ |
224 "standalone/arc_standalone_bridge_main.cc", | 221 "standalone/arc_standalone_bridge_main.cc", |
225 ] | 222 ] |
226 | 223 |
227 deps = [ | 224 deps = [ |
228 ":arc_standalone", | 225 ":arc_standalone", |
229 ":arc_standalone_service", | 226 ":arc_standalone_service", |
230 "//base", | 227 "//base", |
231 "//ipc:ipc", | 228 "//ipc:ipc", |
232 "//ipc/mojo:mojo", | |
233 "//mojo/edk/system", | 229 "//mojo/edk/system", |
234 ] | 230 ] |
235 } | 231 } |
OLD | NEW |