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