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 | 6 |
7 static_library("arc") { | 7 static_library("arc") { |
8 sources = [ | 8 sources = [ |
9 "arc_bridge_bootstrap.cc", | 9 "arc_bridge_bootstrap.cc", |
10 "arc_bridge_bootstrap.h", | 10 "arc_bridge_bootstrap.h", |
(...skipping 23 matching lines...) Expand all Loading... |
34 ] | 34 ] |
35 | 35 |
36 deps = [ | 36 deps = [ |
37 "//base", | 37 "//base", |
38 "//base:prefs", | 38 "//base:prefs", |
39 "//chromeos", | 39 "//chromeos", |
40 "//chromeos:power_manager_proto", | 40 "//chromeos:power_manager_proto", |
41 "//components/signin/core/account_id", | 41 "//components/signin/core/account_id", |
42 "//ipc:ipc", | 42 "//ipc:ipc", |
43 "//ipc/mojo:mojo", | 43 "//ipc/mojo:mojo", |
44 "//third_party/mojo/src/mojo/edk/system", | 44 "//mojo/edk/system", |
45 "//ui/arc", | 45 "//ui/arc", |
46 "//ui/aura", | 46 "//ui/aura", |
47 "//ui/base:base", | 47 "//ui/base:base", |
48 "//ui/base/ime", | 48 "//ui/base/ime", |
49 "//ui/events", | 49 "//ui/events", |
50 "//ui/events:dom_keycode_converter", | 50 "//ui/events:dom_keycode_converter", |
51 ] | 51 ] |
52 | 52 |
53 public_deps = [ | 53 public_deps = [ |
54 ":arc_bindings", | 54 ":arc_bindings", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "//chromeos", | 104 "//chromeos", |
105 "//ipc/mojo:mojo", | 105 "//ipc/mojo:mojo", |
106 "//mojo/public/cpp/environment:environment", | 106 "//mojo/public/cpp/environment:environment", |
107 "//mojo/public/cpp/system:system", | 107 "//mojo/public/cpp/system:system", |
108 "//testing/gtest", | 108 "//testing/gtest", |
109 "//ui/aura", | 109 "//ui/aura", |
110 "//ui/events", | 110 "//ui/events", |
111 "//ui/events:dom_keycode_converter", | 111 "//ui/events:dom_keycode_converter", |
112 ] | 112 ] |
113 } | 113 } |
OLD | NEW |