| 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", |
| 11 "arc_bridge_service.cc", | 11 "arc_bridge_service.cc", |
| 12 "arc_bridge_service.h", | 12 "arc_bridge_service.h", |
| 13 "arc_bridge_service_impl.cc", | 13 "arc_bridge_service_impl.cc", |
| 14 "arc_bridge_service_impl.h", | 14 "arc_bridge_service_impl.h", |
| 15 "arc_service_manager.cc", | 15 "arc_service_manager.cc", |
| 16 "arc_service_manager.h", | 16 "arc_service_manager.h", |
| 17 "input/arc_input_bridge.h", | 17 "input/arc_input_bridge.h", |
| 18 "input/arc_input_bridge_impl.cc", | 18 "input/arc_input_bridge_impl.cc", |
| 19 "input/arc_input_bridge_impl.h", | 19 "input/arc_input_bridge_impl.h", |
| 20 "notification/arc_notification_item.cc", |
| 21 "notification/arc_notification_item.h", |
| 22 "notification/arc_notification_manager.cc", |
| 23 "notification/arc_notification_manager.h", |
| 20 "power/arc_power_bridge.cc", | 24 "power/arc_power_bridge.cc", |
| 21 "power/arc_power_bridge.h", | 25 "power/arc_power_bridge.h", |
| 22 "settings/arc_settings_bridge.cc", | 26 "settings/arc_settings_bridge.cc", |
| 23 "settings/arc_settings_bridge.h", | 27 "settings/arc_settings_bridge.h", |
| 24 ] | 28 ] |
| 25 | 29 |
| 26 deps = [ | 30 deps = [ |
| 27 "//base", | 31 "//base", |
| 28 "//base:prefs", | 32 "//base:prefs", |
| 29 "//chromeos", | 33 "//chromeos", |
| 30 "//chromeos:power_manager_proto", | 34 "//chromeos:power_manager_proto", |
| 35 "//components/signin/core/account_id", |
| 36 "//content/public/browser", |
| 37 "//content/public/child", |
| 31 "//ipc:ipc", | 38 "//ipc:ipc", |
| 32 "//ipc/mojo:mojo", | 39 "//ipc/mojo:mojo", |
| 33 "//third_party/mojo/src/mojo/edk/system", | 40 "//third_party/mojo/src/mojo/edk/system", |
| 34 "//ui/aura", | 41 "//ui/aura", |
| 35 "//ui/events", | 42 "//ui/events", |
| 36 "//ui/events:dom_keycode_converter", | 43 "//ui/events:dom_keycode_converter", |
| 44 "//ui/gfx", |
| 45 "//ui/message_center", |
| 37 ] | 46 ] |
| 38 | 47 |
| 39 public_deps = [ | 48 public_deps = [ |
| 40 ":arc_bindings", | 49 ":arc_bindings", |
| 41 ] | 50 ] |
| 42 } | 51 } |
| 43 | 52 |
| 44 mojom("arc_bindings") { | 53 mojom("arc_bindings") { |
| 45 sources = [ | 54 sources = [ |
| 46 "common/app.mojom", | 55 "common/app.mojom", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "//chromeos", | 95 "//chromeos", |
| 87 "//ipc/mojo:mojo", | 96 "//ipc/mojo:mojo", |
| 88 "//mojo/public/cpp/environment:environment", | 97 "//mojo/public/cpp/environment:environment", |
| 89 "//mojo/public/cpp/system:system", | 98 "//mojo/public/cpp/system:system", |
| 90 "//testing/gtest", | 99 "//testing/gtest", |
| 91 "//ui/aura", | 100 "//ui/aura", |
| 92 "//ui/events", | 101 "//ui/events", |
| 93 "//ui/events:dom_keycode_converter", | 102 "//ui/events:dom_keycode_converter", |
| 94 ] | 103 ] |
| 95 } | 104 } |
| OLD | NEW |