| 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", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "clipboard/arc_clipboard_bridge.h", | 22 "clipboard/arc_clipboard_bridge.h", |
| 23 "ime/arc_ime_bridge.cc", | 23 "ime/arc_ime_bridge.cc", |
| 24 "ime/arc_ime_bridge.h", | 24 "ime/arc_ime_bridge.h", |
| 25 "ime/arc_ime_ipc_host.h", | 25 "ime/arc_ime_ipc_host.h", |
| 26 "ime/arc_ime_ipc_host_impl.cc", | 26 "ime/arc_ime_ipc_host_impl.cc", |
| 27 "ime/arc_ime_ipc_host_impl.h", | 27 "ime/arc_ime_ipc_host_impl.h", |
| 28 "input/arc_input_bridge.cc", | 28 "input/arc_input_bridge.cc", |
| 29 "input/arc_input_bridge.h", | 29 "input/arc_input_bridge.h", |
| 30 "net/arc_net_host_impl.cc", | 30 "net/arc_net_host_impl.cc", |
| 31 "net/arc_net_host_impl.h", | 31 "net/arc_net_host_impl.h", |
| 32 "policy/arc_policy_bridge.cc", |
| 33 "policy/arc_policy_bridge.h", |
| 32 "power/arc_power_bridge.cc", | 34 "power/arc_power_bridge.cc", |
| 33 "power/arc_power_bridge.h", | 35 "power/arc_power_bridge.h", |
| 34 ] | 36 ] |
| 35 | 37 |
| 36 deps = [ | 38 deps = [ |
| 37 "//ash:ash", | 39 "//ash:ash", |
| 38 "//base", | 40 "//base", |
| 39 "//chromeos", | 41 "//chromeos", |
| 40 "//chromeos:power_manager_proto", | 42 "//chromeos:power_manager_proto", |
| 41 "//components/exo", | 43 "//components/exo", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 64 sources = [ | 66 sources = [ |
| 65 "common/app.mojom", | 67 "common/app.mojom", |
| 66 "common/arc_bridge.mojom", | 68 "common/arc_bridge.mojom", |
| 67 "common/auth.mojom", | 69 "common/auth.mojom", |
| 68 "common/clipboard.mojom", | 70 "common/clipboard.mojom", |
| 69 "common/ime.mojom", | 71 "common/ime.mojom", |
| 70 "common/input.mojom", | 72 "common/input.mojom", |
| 71 "common/intent_helper.mojom", | 73 "common/intent_helper.mojom", |
| 72 "common/net.mojom", | 74 "common/net.mojom", |
| 73 "common/notifications.mojom", | 75 "common/notifications.mojom", |
| 76 "common/policy.mojom", |
| 74 "common/power.mojom", | 77 "common/power.mojom", |
| 75 "common/process.mojom", | 78 "common/process.mojom", |
| 76 "common/video.mojom", | 79 "common/video.mojom", |
| 77 ] | 80 ] |
| 78 } | 81 } |
| 79 | 82 |
| 80 static_library("arc_test_support") { | 83 static_library("arc_test_support") { |
| 81 testonly = true | 84 testonly = true |
| 82 sources = [ | 85 sources = [ |
| 83 "test/fake_app_instance.cc", | 86 "test/fake_app_instance.cc", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 ] | 146 ] |
| 144 | 147 |
| 145 deps = [ | 148 deps = [ |
| 146 ":arc_standalone", | 149 ":arc_standalone", |
| 147 "//base", | 150 "//base", |
| 148 "//ipc:ipc", | 151 "//ipc:ipc", |
| 149 "//ipc/mojo:mojo", | 152 "//ipc/mojo:mojo", |
| 150 "//mojo/edk/system", | 153 "//mojo/edk/system", |
| 151 ] | 154 ] |
| 152 } | 155 } |
| OLD | NEW |