| 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_service_manager.cc", | 10 "arc_service_manager.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "video_accelerator/video_accelerator_struct_traits.cc", | 57 "video_accelerator/video_accelerator_struct_traits.cc", |
| 58 "video_accelerator/video_accelerator_struct_traits.h", | 58 "video_accelerator/video_accelerator_struct_traits.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 public_deps = [ | 61 public_deps = [ |
| 62 ":arc_base", | 62 ":arc_base", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 "//ash:ash", | 66 "//ash:ash", |
| 67 "//ash/public/interfaces", | 67 "//ash/public/cpp:ash_public_cpp", |
| 68 "//base", | 68 "//base", |
| 69 "//chromeos", | 69 "//chromeos", |
| 70 "//chromeos:power_manager_proto", | 70 "//chromeos:power_manager_proto", |
| 71 "//components/exo", | 71 "//components/exo", |
| 72 "//components/google/core/browser", | 72 "//components/google/core/browser", |
| 73 "//components/onc", | 73 "//components/onc", |
| 74 "//components/prefs", | 74 "//components/prefs", |
| 75 "//components/signin/core/account_id", | 75 "//components/signin/core/account_id", |
| 76 "//device/bluetooth", | 76 "//device/bluetooth", |
| 77 "//google_apis", | 77 "//google_apis", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "//testing/gtest", | 223 "//testing/gtest", |
| 224 "//ui/aura", | 224 "//ui/aura", |
| 225 "//ui/aura:test_support", | 225 "//ui/aura:test_support", |
| 226 "//ui/base:test_support", | 226 "//ui/base:test_support", |
| 227 "//ui/base/ime", | 227 "//ui/base/ime", |
| 228 "//ui/events", | 228 "//ui/events", |
| 229 "//ui/events:dom_keycode_converter", | 229 "//ui/events:dom_keycode_converter", |
| 230 "//url:url", | 230 "//url:url", |
| 231 ] | 231 ] |
| 232 } | 232 } |
| OLD | NEW |