| 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/auth/arc_auth_service.h", |
| 9 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
| 10 "arc_bridge_bootstrap.h", | 11 "arc_bridge_bootstrap.h", |
| 11 "arc_bridge_service.cc", | 12 "arc_bridge_service.cc", |
| 12 "arc_bridge_service.h", | 13 "arc_bridge_service.h", |
| 13 "arc_bridge_service_impl.cc", | 14 "arc_bridge_service_impl.cc", |
| 14 "arc_bridge_service_impl.h", | 15 "arc_bridge_service_impl.h", |
| 15 "arc_service_manager.cc", | 16 "arc_service_manager.cc", |
| 16 "arc_service_manager.h", | 17 "arc_service_manager.h", |
| 17 "input/arc_input_bridge.h", | 18 "input/arc_input_bridge.h", |
| 18 "input/arc_input_bridge_impl.cc", | 19 "input/arc_input_bridge_impl.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 38 | 39 |
| 39 public_deps = [ | 40 public_deps = [ |
| 40 ":arc_bindings", | 41 ":arc_bindings", |
| 41 ] | 42 ] |
| 42 } | 43 } |
| 43 | 44 |
| 44 mojom("arc_bindings") { | 45 mojom("arc_bindings") { |
| 45 sources = [ | 46 sources = [ |
| 46 "common/app.mojom", | 47 "common/app.mojom", |
| 47 "common/arc_bridge.mojom", | 48 "common/arc_bridge.mojom", |
| 49 "common/auth.mojom", |
| 48 "common/input.mojom", | 50 "common/input.mojom", |
| 49 "common/notifications.mojom", | 51 "common/notifications.mojom", |
| 50 "common/power.mojom", | 52 "common/power.mojom", |
| 51 "common/process.mojom", | 53 "common/process.mojom", |
| 52 "common/settings.mojom", | 54 "common/settings.mojom", |
| 53 ] | 55 ] |
| 54 } | 56 } |
| 55 | 57 |
| 56 static_library("arc_test_support") { | 58 static_library("arc_test_support") { |
| 57 testonly = true | 59 testonly = true |
| (...skipping 28 matching lines...) Expand all 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 |