| 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 13 matching lines...) Expand all Loading... |
| 24 "power/arc_power_bridge.h", | 24 "power/arc_power_bridge.h", |
| 25 "settings/arc_settings_bridge.cc", | 25 "settings/arc_settings_bridge.cc", |
| 26 "settings/arc_settings_bridge.h", | 26 "settings/arc_settings_bridge.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "//base", | 30 "//base", |
| 31 "//base:prefs", | 31 "//base:prefs", |
| 32 "//chromeos", | 32 "//chromeos", |
| 33 "//chromeos:power_manager_proto", | 33 "//chromeos:power_manager_proto", |
| 34 "//components/signin/core/account_id", |
| 34 "//ipc:ipc", | 35 "//ipc:ipc", |
| 35 "//ipc/mojo:mojo", | 36 "//ipc/mojo:mojo", |
| 36 "//third_party/mojo/src/mojo/edk/system", | 37 "//third_party/mojo/src/mojo/edk/system", |
| 38 "//ui/arc", |
| 37 "//ui/aura", | 39 "//ui/aura", |
| 38 "//ui/base:base", | 40 "//ui/base:base", |
| 39 "//ui/events", | 41 "//ui/events", |
| 40 "//ui/events:dom_keycode_converter", | 42 "//ui/events:dom_keycode_converter", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 public_deps = [ | 45 public_deps = [ |
| 44 ":arc_bindings", | 46 ":arc_bindings", |
| 45 ] | 47 ] |
| 46 } | 48 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "//chromeos", | 94 "//chromeos", |
| 93 "//ipc/mojo:mojo", | 95 "//ipc/mojo:mojo", |
| 94 "//mojo/public/cpp/environment:environment", | 96 "//mojo/public/cpp/environment:environment", |
| 95 "//mojo/public/cpp/system:system", | 97 "//mojo/public/cpp/system:system", |
| 96 "//testing/gtest", | 98 "//testing/gtest", |
| 97 "//ui/aura", | 99 "//ui/aura", |
| 98 "//ui/events", | 100 "//ui/events", |
| 99 "//ui/events:dom_keycode_converter", | 101 "//ui/events:dom_keycode_converter", |
| 100 ] | 102 ] |
| 101 } | 103 } |
| OLD | NEW |