| 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_host_impl.cc", | 10 "arc_bridge_host_impl.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 "user_data/arc_user_data_service.h", | 69 "user_data/arc_user_data_service.h", |
| 70 ] | 70 ] |
| 71 | 71 |
| 72 public_deps = [ | 72 public_deps = [ |
| 73 ":arc_base", | 73 ":arc_base", |
| 74 ":arc_bindings", | 74 ":arc_bindings", |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 deps = [ | 77 deps = [ |
| 78 "//ash:ash", | 78 "//ash:ash", |
| 79 "//ash/public/interfaces", |
| 79 "//base", | 80 "//base", |
| 80 "//chromeos", | 81 "//chromeos", |
| 81 "//chromeos:power_manager_proto", | 82 "//chromeos:power_manager_proto", |
| 82 "//components/exo", | 83 "//components/exo", |
| 83 "//components/google/core/browser", | 84 "//components/google/core/browser", |
| 84 "//components/onc", | 85 "//components/onc", |
| 85 "//components/prefs", | 86 "//components/prefs", |
| 86 "//components/signin/core/account_id", | 87 "//components/signin/core/account_id", |
| 87 "//components/user_manager", | 88 "//components/user_manager", |
| 88 "//device/bluetooth", | 89 "//device/bluetooth", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "//mojo/public/cpp/system:system", | 218 "//mojo/public/cpp/system:system", |
| 218 "//testing/gtest", | 219 "//testing/gtest", |
| 219 "//ui/aura", | 220 "//ui/aura", |
| 220 "//ui/base:test_support", | 221 "//ui/base:test_support", |
| 221 "//ui/base/ime", | 222 "//ui/base/ime", |
| 222 "//ui/events", | 223 "//ui/events", |
| 223 "//ui/events:dom_keycode_converter", | 224 "//ui/events:dom_keycode_converter", |
| 224 "//url:url", | 225 "//url:url", |
| 225 ] | 226 ] |
| 226 } | 227 } |
| OLD | NEW |