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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 deps = [ | 62 deps = [ |
63 "//ash:ash", | 63 "//ash:ash", |
64 "//base", | 64 "//base", |
65 "//chromeos", | 65 "//chromeos", |
66 "//chromeos:power_manager_proto", | 66 "//chromeos:power_manager_proto", |
67 "//components/exo", | 67 "//components/exo", |
68 "//components/google/core/browser", | 68 "//components/google/core/browser", |
69 "//components/onc", | 69 "//components/onc", |
70 "//components/prefs", | 70 "//components/prefs", |
71 "//components/signin/core/account_id", | 71 "//components/signin/core/account_id", |
| 72 "//components/user_manager", |
72 "//device/bluetooth", | 73 "//device/bluetooth", |
73 "//google_apis", | 74 "//google_apis", |
74 "//ipc:ipc", | 75 "//ipc:ipc", |
75 "//ipc/mojo:mojo", | 76 "//ipc/mojo:mojo", |
76 "//mojo/edk/system", | 77 "//mojo/edk/system", |
77 "//skia", | 78 "//skia", |
78 "//third_party/re2:re2", | 79 "//third_party/re2:re2", |
79 "//ui/arc", | 80 "//ui/arc", |
80 "//ui/aura", | 81 "//ui/aura", |
81 "//ui/base:base", | 82 "//ui/base:base", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 | 217 |
217 deps = [ | 218 deps = [ |
218 ":arc_standalone", | 219 ":arc_standalone", |
219 ":arc_standalone_service", | 220 ":arc_standalone_service", |
220 "//base", | 221 "//base", |
221 "//ipc:ipc", | 222 "//ipc:ipc", |
222 "//ipc/mojo:mojo", | 223 "//ipc/mojo:mojo", |
223 "//mojo/edk/system", | 224 "//mojo/edk/system", |
224 ] | 225 ] |
225 } | 226 } |
OLD | NEW |