| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("arc") { | 8 static_library("arc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
| 11 "arc_bridge_bootstrap.h", | 11 "arc_bridge_bootstrap.h", |
| 12 "arc_bridge_service.cc", | 12 "arc_bridge_service.cc", |
| 13 "arc_bridge_service.h", | 13 "arc_bridge_service.h", |
| 14 "arc_bridge_service_impl.cc", | 14 "arc_bridge_service_impl.cc", |
| 15 "arc_bridge_service_impl.h", | 15 "arc_bridge_service_impl.h", |
| 16 "arc_service.cc", | 16 "arc_service.cc", |
| 17 "arc_service.h", | 17 "arc_service.h", |
| 18 "arc_service_manager.cc", | 18 "arc_service_manager.cc", |
| 19 "arc_service_manager.h", | 19 "arc_service_manager.h", |
| 20 "audio/arc_audio_bridge.cc", |
| 21 "audio/arc_audio_bridge.h", |
| 20 "auth/arc_auth_fetcher.cc", | 22 "auth/arc_auth_fetcher.cc", |
| 21 "auth/arc_auth_fetcher.h", | 23 "auth/arc_auth_fetcher.h", |
| 22 "clipboard/arc_clipboard_bridge.cc", | 24 "clipboard/arc_clipboard_bridge.cc", |
| 23 "clipboard/arc_clipboard_bridge.h", | 25 "clipboard/arc_clipboard_bridge.h", |
| 24 "crash_collector/arc_crash_collector_bridge.cc", | 26 "crash_collector/arc_crash_collector_bridge.cc", |
| 25 "crash_collector/arc_crash_collector_bridge.h", | 27 "crash_collector/arc_crash_collector_bridge.h", |
| 26 "ime/arc_ime_bridge.h", | 28 "ime/arc_ime_bridge.h", |
| 27 "ime/arc_ime_bridge_impl.cc", | 29 "ime/arc_ime_bridge_impl.cc", |
| 28 "ime/arc_ime_bridge_impl.h", | 30 "ime/arc_ime_bridge_impl.h", |
| 29 "ime/arc_ime_service.cc", | 31 "ime/arc_ime_service.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 64 |
| 63 public_deps = [ | 65 public_deps = [ |
| 64 ":arc_bindings", | 66 ":arc_bindings", |
| 65 ] | 67 ] |
| 66 } | 68 } |
| 67 | 69 |
| 68 mojom("arc_bindings") { | 70 mojom("arc_bindings") { |
| 69 sources = [ | 71 sources = [ |
| 70 "common/app.mojom", | 72 "common/app.mojom", |
| 71 "common/arc_bridge.mojom", | 73 "common/arc_bridge.mojom", |
| 74 "common/audio.mojom", |
| 72 "common/auth.mojom", | 75 "common/auth.mojom", |
| 73 "common/clipboard.mojom", | 76 "common/clipboard.mojom", |
| 74 "common/crash_collector.mojom", | 77 "common/crash_collector.mojom", |
| 75 "common/ime.mojom", | 78 "common/ime.mojom", |
| 76 "common/input.mojom", | 79 "common/input.mojom", |
| 77 "common/intent_helper.mojom", | 80 "common/intent_helper.mojom", |
| 78 "common/net.mojom", | 81 "common/net.mojom", |
| 79 "common/notifications.mojom", | 82 "common/notifications.mojom", |
| 80 "common/policy.mojom", | 83 "common/policy.mojom", |
| 81 "common/power.mojom", | 84 "common/power.mojom", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 | 178 |
| 176 deps = [ | 179 deps = [ |
| 177 ":arc_standalone", | 180 ":arc_standalone", |
| 178 ":arc_standalone_service", | 181 ":arc_standalone_service", |
| 179 "//base", | 182 "//base", |
| 180 "//ipc:ipc", | 183 "//ipc:ipc", |
| 181 "//ipc/mojo:mojo", | 184 "//ipc/mojo:mojo", |
| 182 "//mojo/edk/system", | 185 "//mojo/edk/system", |
| 183 ] | 186 ] |
| 184 } | 187 } |
| OLD | NEW |