| 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.cc", | 15 "arc_service.cc", |
| 16 "arc_service.h", | 16 "arc_service.h", |
| 17 "arc_service_manager.cc", | 17 "arc_service_manager.cc", |
| 18 "arc_service_manager.h", | 18 "arc_service_manager.h", |
| 19 "audio/arc_audio_bridge.cc", |
| 20 "audio/arc_audio_bridge.h", |
| 19 "auth/arc_auth_fetcher.cc", | 21 "auth/arc_auth_fetcher.cc", |
| 20 "auth/arc_auth_fetcher.h", | 22 "auth/arc_auth_fetcher.h", |
| 21 "clipboard/arc_clipboard_bridge.cc", | 23 "clipboard/arc_clipboard_bridge.cc", |
| 22 "clipboard/arc_clipboard_bridge.h", | 24 "clipboard/arc_clipboard_bridge.h", |
| 23 "ime/arc_ime_bridge.cc", | 25 "ime/arc_ime_bridge.cc", |
| 24 "ime/arc_ime_bridge.h", | 26 "ime/arc_ime_bridge.h", |
| 25 "ime/arc_ime_ipc_host.h", | 27 "ime/arc_ime_ipc_host.h", |
| 26 "ime/arc_ime_ipc_host_impl.cc", | 28 "ime/arc_ime_ipc_host_impl.cc", |
| 27 "ime/arc_ime_ipc_host_impl.h", | 29 "ime/arc_ime_ipc_host_impl.h", |
| 28 "input/arc_input_bridge.cc", | 30 "input/arc_input_bridge.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 57 | 59 |
| 58 public_deps = [ | 60 public_deps = [ |
| 59 ":arc_bindings", | 61 ":arc_bindings", |
| 60 ] | 62 ] |
| 61 } | 63 } |
| 62 | 64 |
| 63 mojom("arc_bindings") { | 65 mojom("arc_bindings") { |
| 64 sources = [ | 66 sources = [ |
| 65 "common/app.mojom", | 67 "common/app.mojom", |
| 66 "common/arc_bridge.mojom", | 68 "common/arc_bridge.mojom", |
| 69 "common/audio.mojom", |
| 67 "common/auth.mojom", | 70 "common/auth.mojom", |
| 68 "common/clipboard.mojom", | 71 "common/clipboard.mojom", |
| 69 "common/ime.mojom", | 72 "common/ime.mojom", |
| 70 "common/input.mojom", | 73 "common/input.mojom", |
| 71 "common/intent_helper.mojom", | 74 "common/intent_helper.mojom", |
| 72 "common/net.mojom", | 75 "common/net.mojom", |
| 73 "common/notifications.mojom", | 76 "common/notifications.mojom", |
| 74 "common/power.mojom", | 77 "common/power.mojom", |
| 75 "common/process.mojom", | 78 "common/process.mojom", |
| 76 "common/settings.mojom", | 79 "common/settings.mojom", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "//mojo/public/cpp/environment:environment", | 117 "//mojo/public/cpp/environment:environment", |
| 115 "//mojo/public/cpp/system:system", | 118 "//mojo/public/cpp/system:system", |
| 116 "//testing/gtest", | 119 "//testing/gtest", |
| 117 "//ui/aura", | 120 "//ui/aura", |
| 118 "//ui/base:test_support", | 121 "//ui/base:test_support", |
| 119 "//ui/base/ime", | 122 "//ui/base/ime", |
| 120 "//ui/events", | 123 "//ui/events", |
| 121 "//ui/events:dom_keycode_converter", | 124 "//ui/events:dom_keycode_converter", |
| 122 ] | 125 ] |
| 123 } | 126 } |
| OLD | NEW |