| 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 "auth/arc_auth_service.h", | 17 "auth/arc_auth_service.h", |
| 18 "clipboard/arc_clipboard_bridge.cc", | 18 "clipboard/arc_clipboard_bridge.cc", |
| 19 "clipboard/arc_clipboard_bridge.h", | 19 "clipboard/arc_clipboard_bridge.h", |
| 20 "input/arc_input_bridge.h", | 20 "input/arc_input_bridge.h", |
| 21 "input/arc_input_bridge_impl.cc", | 21 "input/arc_input_bridge_impl.cc", |
| 22 "input/arc_input_bridge_impl.h", | 22 "input/arc_input_bridge_impl.h", |
| 23 "net/arc_net_host_impl.cc", |
| 24 "net/arc_net_host_impl.h", |
| 23 "power/arc_power_bridge.cc", | 25 "power/arc_power_bridge.cc", |
| 24 "power/arc_power_bridge.h", | 26 "power/arc_power_bridge.h", |
| 25 "settings/arc_settings_bridge.cc", | 27 "settings/arc_settings_bridge.cc", |
| 26 "settings/arc_settings_bridge.h", | 28 "settings/arc_settings_bridge.h", |
| 27 ] | 29 ] |
| 28 | 30 |
| 29 deps = [ | 31 deps = [ |
| 30 "//base", | 32 "//base", |
| 31 "//base:prefs", | 33 "//base:prefs", |
| 32 "//chromeos", | 34 "//chromeos", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 45 ] | 47 ] |
| 46 } | 48 } |
| 47 | 49 |
| 48 mojom("arc_bindings") { | 50 mojom("arc_bindings") { |
| 49 sources = [ | 51 sources = [ |
| 50 "common/app.mojom", | 52 "common/app.mojom", |
| 51 "common/arc_bridge.mojom", | 53 "common/arc_bridge.mojom", |
| 52 "common/auth.mojom", | 54 "common/auth.mojom", |
| 53 "common/clipboard.mojom", | 55 "common/clipboard.mojom", |
| 54 "common/input.mojom", | 56 "common/input.mojom", |
| 57 "common/net.mojom", |
| 55 "common/notifications.mojom", | 58 "common/notifications.mojom", |
| 56 "common/power.mojom", | 59 "common/power.mojom", |
| 57 "common/process.mojom", | 60 "common/process.mojom", |
| 58 "common/settings.mojom", | 61 "common/settings.mojom", |
| 59 ] | 62 ] |
| 60 } | 63 } |
| 61 | 64 |
| 62 static_library("arc_test_support") { | 65 static_library("arc_test_support") { |
| 63 testonly = true | 66 testonly = true |
| 64 sources = [ | 67 sources = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 92 "//chromeos", | 95 "//chromeos", |
| 93 "//ipc/mojo:mojo", | 96 "//ipc/mojo:mojo", |
| 94 "//mojo/public/cpp/environment:environment", | 97 "//mojo/public/cpp/environment:environment", |
| 95 "//mojo/public/cpp/system:system", | 98 "//mojo/public/cpp/system:system", |
| 96 "//testing/gtest", | 99 "//testing/gtest", |
| 97 "//ui/aura", | 100 "//ui/aura", |
| 98 "//ui/events", | 101 "//ui/events", |
| 99 "//ui/events:dom_keycode_converter", | 102 "//ui/events:dom_keycode_converter", |
| 100 ] | 103 ] |
| 101 } | 104 } |
| OLD | NEW |