| 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 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 ":arc_bindings", | 23 ":arc_bindings", |
| 24 "//base", | 24 "//base", |
| 25 "//base:prefs", | 25 "//base:prefs", |
| 26 "//chromeos", | 26 "//chromeos", |
| 27 "//components/signin/core/account_id", |
| 28 "//content/public/browser", |
| 29 "//content/public/child", |
| 27 "//ipc:ipc", | 30 "//ipc:ipc", |
| 28 "//ipc/mojo:mojo", | 31 "//ipc/mojo:mojo", |
| 29 "//third_party/mojo/src/mojo/edk/system", | 32 "//third_party/mojo/src/mojo/edk/system", |
| 30 "//ui/aura", | 33 "//ui/aura", |
| 31 "//ui/events", | 34 "//ui/events", |
| 32 "//ui/events:dom_keycode_converter", | 35 "//ui/events:dom_keycode_converter", |
| 36 "//ui/gfx", |
| 37 "//ui/message_center", |
| 33 ] | 38 ] |
| 34 } | 39 } |
| 35 | 40 |
| 36 mojom("arc_bindings") { | 41 mojom("arc_bindings") { |
| 37 sources = [ | 42 sources = [ |
| 38 "common/arc_bridge.mojom", | 43 "common/arc_bridge.mojom", |
| 39 ] | 44 ] |
| 40 } | 45 } |
| 41 | 46 |
| 42 static_library("arc_test_support") { | 47 static_library("arc_test_support") { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 69 "//chromeos", | 74 "//chromeos", |
| 70 "//ipc/mojo:mojo", | 75 "//ipc/mojo:mojo", |
| 71 "//mojo/public/cpp/environment:environment", | 76 "//mojo/public/cpp/environment:environment", |
| 72 "//mojo/public/cpp/system:system", | 77 "//mojo/public/cpp/system:system", |
| 73 "//testing/gtest", | 78 "//testing/gtest", |
| 74 "//ui/aura", | 79 "//ui/aura", |
| 75 "//ui/events", | 80 "//ui/events", |
| 76 "//ui/events:dom_keycode_converter", | 81 "//ui/events:dom_keycode_converter", |
| 77 ] | 82 ] |
| 78 } | 83 } |
| OLD | NEW |