| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "obb_mounter/arc_obb_mounter_bridge.cc", | 56 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 57 "obb_mounter/arc_obb_mounter_bridge.h", | 57 "obb_mounter/arc_obb_mounter_bridge.h", |
| 58 "power/arc_power_bridge.cc", | 58 "power/arc_power_bridge.cc", |
| 59 "power/arc_power_bridge.h", | 59 "power/arc_power_bridge.h", |
| 60 "storage_manager/arc_storage_manager.cc", | 60 "storage_manager/arc_storage_manager.cc", |
| 61 "storage_manager/arc_storage_manager.h", | 61 "storage_manager/arc_storage_manager.h", |
| 62 "user_data/arc_user_data_service.cc", | 62 "user_data/arc_user_data_service.cc", |
| 63 "user_data/arc_user_data_service.h", | 63 "user_data/arc_user_data_service.h", |
| 64 ] | 64 ] |
| 65 | 65 |
| 66 public_deps = [ |
| 67 ":arc_base", |
| 68 ":arc_bindings", |
| 69 ] |
| 70 |
| 66 deps = [ | 71 deps = [ |
| 67 ":arc_base", | |
| 68 "//ash:ash", | 72 "//ash:ash", |
| 69 "//base", | 73 "//base", |
| 70 "//chromeos", | 74 "//chromeos", |
| 71 "//chromeos:power_manager_proto", | 75 "//chromeos:power_manager_proto", |
| 72 "//components/exo", | 76 "//components/exo", |
| 73 "//components/google/core/browser", | 77 "//components/google/core/browser", |
| 74 "//components/onc", | 78 "//components/onc", |
| 75 "//components/prefs", | 79 "//components/prefs", |
| 76 "//components/signin/core/account_id", | 80 "//components/signin/core/account_id", |
| 77 "//components/user_manager", | 81 "//components/user_manager", |
| 78 "//device/bluetooth", | 82 "//device/bluetooth", |
| 79 "//google_apis", | 83 "//google_apis", |
| 80 "//ipc:ipc", | 84 "//ipc:ipc", |
| 81 "//mojo/edk/system", | 85 "//mojo/edk/system", |
| 82 "//skia", | 86 "//skia", |
| 83 "//third_party/re2:re2", | 87 "//third_party/re2:re2", |
| 84 "//ui/arc", | 88 "//ui/arc", |
| 85 "//ui/aura", | 89 "//ui/aura", |
| 86 "//ui/base:base", | 90 "//ui/base:base", |
| 87 "//ui/base/ime", | 91 "//ui/base/ime", |
| 88 "//ui/display:display", | 92 "//ui/display:display", |
| 89 "//ui/events", | 93 "//ui/events", |
| 90 "//ui/events:dom_keycode_converter", | 94 "//ui/events:dom_keycode_converter", |
| 91 "//ui/keyboard:keyboard", | 95 "//ui/keyboard:keyboard", |
| 92 "//url:url", | 96 "//url:url", |
| 93 ] | 97 ] |
| 94 | |
| 95 public_deps = [ | |
| 96 ":arc_bindings", | |
| 97 ] | |
| 98 } | 98 } |
| 99 | 99 |
| 100 static_library("arc_base") { | 100 static_library("arc_base") { |
| 101 sources = [ | 101 sources = [ |
| 102 "arc_bridge_service.cc", | 102 "arc_bridge_service.cc", |
| 103 "arc_bridge_service.h", | 103 "arc_bridge_service.h", |
| 104 "arc_service.cc", | 104 "arc_service.cc", |
| 105 "arc_service.h", | 105 "arc_service.h", |
| 106 "instance_holder.h", | 106 "instance_holder.h", |
| 107 ] | 107 ] |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 ] | 277 ] |
| 278 | 278 |
| 279 deps = [ | 279 deps = [ |
| 280 ":arc_standalone", | 280 ":arc_standalone", |
| 281 ":arc_standalone_service", | 281 ":arc_standalone_service", |
| 282 "//base", | 282 "//base", |
| 283 "//ipc:ipc", | 283 "//ipc:ipc", |
| 284 "//mojo/edk/system", | 284 "//mojo/edk/system", |
| 285 ] | 285 ] |
| 286 } | 286 } |
| OLD | NEW |