| 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 "intent_helper/arc_intent_helper_bridge.cc", |
| 34 "intent_helper/arc_intent_helper_bridge.h", |
| 33 "metrics/arc_low_memory_killer_monitor.cc", | 35 "metrics/arc_low_memory_killer_monitor.cc", |
| 34 "metrics/arc_low_memory_killer_monitor.h", | 36 "metrics/arc_low_memory_killer_monitor.h", |
| 35 "metrics/arc_metrics_service.cc", | 37 "metrics/arc_metrics_service.cc", |
| 36 "metrics/arc_metrics_service.h", | 38 "metrics/arc_metrics_service.h", |
| 37 "net/arc_net_host_impl.cc", | 39 "net/arc_net_host_impl.cc", |
| 38 "net/arc_net_host_impl.h", | 40 "net/arc_net_host_impl.h", |
| 39 "power/arc_power_bridge.cc", | 41 "power/arc_power_bridge.cc", |
| 40 "power/arc_power_bridge.h", | 42 "power/arc_power_bridge.h", |
| 41 ] | 43 ] |
| 42 | 44 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 54 "//ipc/mojo:mojo", | 56 "//ipc/mojo:mojo", |
| 55 "//mojo/edk/system", | 57 "//mojo/edk/system", |
| 56 "//third_party/re2:re2", | 58 "//third_party/re2:re2", |
| 57 "//ui/arc", | 59 "//ui/arc", |
| 58 "//ui/aura", | 60 "//ui/aura", |
| 59 "//ui/base:base", | 61 "//ui/base:base", |
| 60 "//ui/base/ime", | 62 "//ui/base/ime", |
| 61 "//ui/display:display", | 63 "//ui/display:display", |
| 62 "//ui/events", | 64 "//ui/events", |
| 63 "//ui/events:dom_keycode_converter", | 65 "//ui/events:dom_keycode_converter", |
| 66 "//url:url", |
| 64 ] | 67 ] |
| 65 | 68 |
| 66 public_deps = [ | 69 public_deps = [ |
| 67 ":arc_bindings", | 70 ":arc_bindings", |
| 68 ] | 71 ] |
| 69 } | 72 } |
| 70 | 73 |
| 71 mojom("arc_bindings") { | 74 mojom("arc_bindings") { |
| 72 sources = [ | 75 sources = [ |
| 73 "common/app.mojom", | 76 "common/app.mojom", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 181 |
| 179 deps = [ | 182 deps = [ |
| 180 ":arc_standalone", | 183 ":arc_standalone", |
| 181 ":arc_standalone_service", | 184 ":arc_standalone_service", |
| 182 "//base", | 185 "//base", |
| 183 "//ipc:ipc", | 186 "//ipc:ipc", |
| 184 "//ipc/mojo:mojo", | 187 "//ipc/mojo:mojo", |
| 185 "//mojo/edk/system", | 188 "//mojo/edk/system", |
| 186 ] | 189 ] |
| 187 } | 190 } |
| OLD | NEW |