| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "//components/google/core/browser", | 85 "//components/google/core/browser", |
| 86 "//components/onc", | 86 "//components/onc", |
| 87 "//components/prefs", | 87 "//components/prefs", |
| 88 "//components/signin/core/account_id", | 88 "//components/signin/core/account_id", |
| 89 "//components/user_manager", | 89 "//components/user_manager", |
| 90 "//device/bluetooth", | 90 "//device/bluetooth", |
| 91 "//google_apis", | 91 "//google_apis", |
| 92 "//mojo/edk/system", | 92 "//mojo/edk/system", |
| 93 "//skia", | 93 "//skia", |
| 94 "//third_party/re2:re2", | 94 "//third_party/re2:re2", |
| 95 "//ui/arc", | |
| 96 "//ui/aura", | 95 "//ui/aura", |
| 97 "//ui/base:base", | 96 "//ui/base:base", |
| 98 "//ui/base/ime", | 97 "//ui/base/ime", |
| 99 "//ui/display:display", | 98 "//ui/display:display", |
| 100 "//ui/events", | 99 "//ui/events", |
| 101 "//ui/events:dom_keycode_converter", | 100 "//ui/events:dom_keycode_converter", |
| 102 "//ui/keyboard:keyboard", | 101 "//ui/keyboard:keyboard", |
| 103 "//url:url", | 102 "//url:url", |
| 104 ] | 103 ] |
| 105 } | 104 } |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "//testing/gtest", | 229 "//testing/gtest", |
| 231 "//ui/aura", | 230 "//ui/aura", |
| 232 "//ui/aura:test_support", | 231 "//ui/aura:test_support", |
| 233 "//ui/base:test_support", | 232 "//ui/base:test_support", |
| 234 "//ui/base/ime", | 233 "//ui/base/ime", |
| 235 "//ui/events", | 234 "//ui/events", |
| 236 "//ui/events:dom_keycode_converter", | 235 "//ui/events:dom_keycode_converter", |
| 237 "//url:url", | 236 "//url:url", |
| 238 ] | 237 ] |
| 239 } | 238 } |
| OLD | NEW |