| 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 "video_accelerator/video_accelerator_struct_traits.cc", |
| 68 "video_accelerator/video_accelerator_struct_traits.h", |
| 67 ] | 69 ] |
| 68 | 70 |
| 69 public_deps = [ | 71 public_deps = [ |
| 70 ":arc_base", | 72 ":arc_base", |
| 71 ] | 73 ] |
| 72 | 74 |
| 73 deps = [ | 75 deps = [ |
| 74 "//ash:ash", | 76 "//ash:ash", |
| 75 "//ash/public/interfaces", | 77 "//ash/public/interfaces", |
| 76 "//base", | 78 "//base", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 "//testing/gtest", | 230 "//testing/gtest", |
| 229 "//ui/aura", | 231 "//ui/aura", |
| 230 "//ui/aura:test_support", | 232 "//ui/aura:test_support", |
| 231 "//ui/base:test_support", | 233 "//ui/base:test_support", |
| 232 "//ui/base/ime", | 234 "//ui/base/ime", |
| 233 "//ui/events", | 235 "//ui/events", |
| 234 "//ui/events:dom_keycode_converter", | 236 "//ui/events:dom_keycode_converter", |
| 235 "//url:url", | 237 "//url:url", |
| 236 ] | 238 ] |
| 237 } | 239 } |
| OLD | NEW |