| 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", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 "clipboard/arc_clipboard_bridge.h", | 23 "clipboard/arc_clipboard_bridge.h", |
| 24 "crash_collector/arc_crash_collector_bridge.cc", | 24 "crash_collector/arc_crash_collector_bridge.cc", |
| 25 "crash_collector/arc_crash_collector_bridge.h", | 25 "crash_collector/arc_crash_collector_bridge.h", |
| 26 "ime/arc_ime_bridge.h", | 26 "ime/arc_ime_bridge.h", |
| 27 "ime/arc_ime_bridge_impl.cc", | 27 "ime/arc_ime_bridge_impl.cc", |
| 28 "ime/arc_ime_bridge_impl.h", | 28 "ime/arc_ime_bridge_impl.h", |
| 29 "ime/arc_ime_service.cc", | 29 "ime/arc_ime_service.cc", |
| 30 "ime/arc_ime_service.h", | 30 "ime/arc_ime_service.h", |
| 31 "input/arc_input_bridge.cc", | 31 "input/arc_input_bridge.cc", |
| 32 "input/arc_input_bridge.h", | 32 "input/arc_input_bridge.h", |
| 33 "metrics/arc_low_memory_killer_monitor.cc", |
| 34 "metrics/arc_low_memory_killer_monitor.h", |
| 33 "metrics/arc_metrics_service.cc", | 35 "metrics/arc_metrics_service.cc", |
| 34 "metrics/arc_metrics_service.h", | 36 "metrics/arc_metrics_service.h", |
| 35 "net/arc_net_host_impl.cc", | 37 "net/arc_net_host_impl.cc", |
| 36 "net/arc_net_host_impl.h", | 38 "net/arc_net_host_impl.h", |
| 37 "power/arc_power_bridge.cc", | 39 "power/arc_power_bridge.cc", |
| 38 "power/arc_power_bridge.h", | 40 "power/arc_power_bridge.h", |
| 39 ] | 41 ] |
| 40 | 42 |
| 41 deps = [ | 43 deps = [ |
| 42 "//ash:ash", | 44 "//ash:ash", |
| 43 "//base", | 45 "//base", |
| 44 "//chromeos", | 46 "//chromeos", |
| 45 "//chromeos:power_manager_proto", | 47 "//chromeos:power_manager_proto", |
| 46 "//components/exo", | 48 "//components/exo", |
| 47 "//components/onc", | 49 "//components/onc", |
| 48 "//components/prefs", | 50 "//components/prefs", |
| 49 "//components/signin/core/account_id", | 51 "//components/signin/core/account_id", |
| 50 "//google_apis", | 52 "//google_apis", |
| 51 "//ipc:ipc", | 53 "//ipc:ipc", |
| 52 "//ipc/mojo:mojo", | 54 "//ipc/mojo:mojo", |
| 53 "//mojo/edk/system", | 55 "//mojo/edk/system", |
| 56 "//third_party/re2:re2", |
| 54 "//ui/arc", | 57 "//ui/arc", |
| 55 "//ui/aura", | 58 "//ui/aura", |
| 56 "//ui/base:base", | 59 "//ui/base:base", |
| 57 "//ui/base/ime", | 60 "//ui/base/ime", |
| 58 "//ui/display:display", | 61 "//ui/display:display", |
| 59 "//ui/events", | 62 "//ui/events", |
| 60 "//ui/events:dom_keycode_converter", | 63 "//ui/events:dom_keycode_converter", |
| 61 ] | 64 ] |
| 62 | 65 |
| 63 public_deps = [ | 66 public_deps = [ |
| (...skipping 111 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 |