| 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 17 matching lines...) Expand all Loading... |
| 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 "power/arc_power_bridge.cc", | 32 "power/arc_power_bridge.cc", |
| 33 "power/arc_power_bridge.h", | 33 "power/arc_power_bridge.h", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 "//base", | 37 "//base", |
| 38 "//base:prefs", | |
| 39 "//chromeos", | 38 "//chromeos", |
| 40 "//chromeos:power_manager_proto", | 39 "//chromeos:power_manager_proto", |
| 41 "//components/onc", | 40 "//components/onc", |
| 41 "//components/prefs", |
| 42 "//components/signin/core/account_id", | 42 "//components/signin/core/account_id", |
| 43 "//google_apis", | 43 "//google_apis", |
| 44 "//ipc:ipc", | 44 "//ipc:ipc", |
| 45 "//ipc/mojo:mojo", | 45 "//ipc/mojo:mojo", |
| 46 "//third_party/mojo/src/mojo/edk/system", | 46 "//third_party/mojo/src/mojo/edk/system", |
| 47 "//ui/arc", | 47 "//ui/arc", |
| 48 "//ui/aura", | 48 "//ui/aura", |
| 49 "//ui/base:base", | 49 "//ui/base:base", |
| 50 "//ui/base/ime", | 50 "//ui/base/ime", |
| 51 "//ui/events", | 51 "//ui/events", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//mojo/public/cpp/environment:environment", | 110 "//mojo/public/cpp/environment:environment", |
| 111 "//mojo/public/cpp/system:system", | 111 "//mojo/public/cpp/system:system", |
| 112 "//testing/gtest", | 112 "//testing/gtest", |
| 113 "//ui/aura", | 113 "//ui/aura", |
| 114 "//ui/base:test_support", | 114 "//ui/base:test_support", |
| 115 "//ui/base/ime", | 115 "//ui/base/ime", |
| 116 "//ui/events", | 116 "//ui/events", |
| 117 "//ui/events:dom_keycode_converter", | 117 "//ui/events:dom_keycode_converter", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| OLD | NEW |