| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "metrics/arc_metrics_service.cc", | 57 "metrics/arc_metrics_service.cc", |
| 58 "metrics/arc_metrics_service.h", | 58 "metrics/arc_metrics_service.h", |
| 59 "net/arc_net_host_impl.cc", | 59 "net/arc_net_host_impl.cc", |
| 60 "net/arc_net_host_impl.h", | 60 "net/arc_net_host_impl.h", |
| 61 "obb_mounter/arc_obb_mounter_bridge.cc", | 61 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 62 "obb_mounter/arc_obb_mounter_bridge.h", | 62 "obb_mounter/arc_obb_mounter_bridge.h", |
| 63 "power/arc_power_bridge.cc", | 63 "power/arc_power_bridge.cc", |
| 64 "power/arc_power_bridge.h", | 64 "power/arc_power_bridge.h", |
| 65 "storage_manager/arc_storage_manager.cc", | 65 "storage_manager/arc_storage_manager.cc", |
| 66 "storage_manager/arc_storage_manager.h", | 66 "storage_manager/arc_storage_manager.h", |
| 67 "user_data/arc_user_data_service.cc", | |
| 68 "user_data/arc_user_data_service.h", | |
| 69 ] | 67 ] |
| 70 | 68 |
| 71 public_deps = [ | 69 public_deps = [ |
| 72 ":arc_base", | 70 ":arc_base", |
| 73 ] | 71 ] |
| 74 | 72 |
| 75 deps = [ | 73 deps = [ |
| 76 "//ash:ash", | 74 "//ash:ash", |
| 77 "//ash/public/interfaces", | 75 "//ash/public/interfaces", |
| 78 "//base", | 76 "//base", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//testing/gtest", | 226 "//testing/gtest", |
| 229 "//ui/aura", | 227 "//ui/aura", |
| 230 "//ui/aura:test_support", | 228 "//ui/aura:test_support", |
| 231 "//ui/base:test_support", | 229 "//ui/base:test_support", |
| 232 "//ui/base/ime", | 230 "//ui/base/ime", |
| 233 "//ui/events", | 231 "//ui/events", |
| 234 "//ui/events:dom_keycode_converter", | 232 "//ui/events:dom_keycode_converter", |
| 235 "//url:url", | 233 "//url:url", |
| 236 ] | 234 ] |
| 237 } | 235 } |
| OLD | NEW |