| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "net/arc_net_host_impl.cc", | 62 "net/arc_net_host_impl.cc", |
| 63 "net/arc_net_host_impl.h", | 63 "net/arc_net_host_impl.h", |
| 64 "obb_mounter/arc_obb_mounter_bridge.cc", | 64 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 65 "obb_mounter/arc_obb_mounter_bridge.h", | 65 "obb_mounter/arc_obb_mounter_bridge.h", |
| 66 "power/arc_power_bridge.cc", | 66 "power/arc_power_bridge.cc", |
| 67 "power/arc_power_bridge.h", | 67 "power/arc_power_bridge.h", |
| 68 "storage_manager/arc_storage_manager.cc", | 68 "storage_manager/arc_storage_manager.cc", |
| 69 "storage_manager/arc_storage_manager.h", | 69 "storage_manager/arc_storage_manager.h", |
| 70 "user_data/arc_user_data_service.cc", | 70 "user_data/arc_user_data_service.cc", |
| 71 "user_data/arc_user_data_service.h", | 71 "user_data/arc_user_data_service.h", |
| 72 "video_accelerator/video_accelerator_struct_traits.h", |
| 72 ] | 73 ] |
| 73 | 74 |
| 74 public_deps = [ | 75 public_deps = [ |
| 75 ":arc_base", | 76 ":arc_base", |
| 76 ] | 77 ] |
| 77 | 78 |
| 78 deps = [ | 79 deps = [ |
| 79 "//ash:ash", | 80 "//ash:ash", |
| 80 "//ash/public/interfaces", | 81 "//ash/public/interfaces", |
| 81 "//base", | 82 "//base", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 "//testing/gtest", | 232 "//testing/gtest", |
| 232 "//ui/aura", | 233 "//ui/aura", |
| 233 "//ui/aura:test_support", | 234 "//ui/aura:test_support", |
| 234 "//ui/base:test_support", | 235 "//ui/base:test_support", |
| 235 "//ui/base/ime", | 236 "//ui/base/ime", |
| 236 "//ui/events", | 237 "//ui/events", |
| 237 "//ui/events:dom_keycode_converter", | 238 "//ui/events:dom_keycode_converter", |
| 238 "//url:url", | 239 "//url:url", |
| 239 ] | 240 ] |
| 240 } | 241 } |
| OLD | NEW |