Chromium Code Reviews| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 71 "//ash:ash", | 71 "//ash:ash", |
| 72 "//ash/public/cpp:ash_public_cpp", | 72 "//ash/public/cpp:ash_public_cpp", |
| 73 "//ash/shared:app_types", | 73 "//ash/shared:app_types", |
| 74 "//base", | 74 "//base", |
| 75 "//chromeos", | 75 "//chromeos", |
| 76 "//chromeos:power_manager_proto", | 76 "//chromeos:power_manager_proto", |
| 77 "//components/exo", | 77 "//components/exo", |
| 78 "//components/google/core/browser", | 78 "//components/google/core/browser", |
| 79 "//components/onc", | 79 "//components/onc", |
| 80 "//components/prefs", | 80 "//components/prefs", |
| 81 "//components/signin/core/account_id", | 81 "//components/signin/core/account_id", |
|
hidehiko
2017/05/18 18:52:49
Please add "//components/user_manager", here, too?
xiyuan
2017/05/22 20:58:18
Done.
| |
| 82 "//device/bluetooth", | 82 "//device/bluetooth", |
| 83 "//google_apis", | 83 "//google_apis", |
| 84 "//mojo/edk/system", | 84 "//mojo/edk/system", |
| 85 "//skia", | 85 "//skia", |
| 86 "//third_party/re2:re2", | 86 "//third_party/re2:re2", |
| 87 "//ui/aura", | 87 "//ui/aura", |
| 88 "//ui/base:base", | 88 "//ui/base:base", |
| 89 "//ui/base/ime", | 89 "//ui/base/ime", |
| 90 "//ui/display/manager", | 90 "//ui/display/manager", |
| 91 "//ui/events", | 91 "//ui/events", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 223 "intent_helper/page_transition_util_unittest.cc", | 223 "intent_helper/page_transition_util_unittest.cc", |
| 224 "kiosk/arc_kiosk_bridge_unittest.cc", | 224 "kiosk/arc_kiosk_bridge_unittest.cc", |
| 225 ] | 225 ] |
| 226 | 226 |
| 227 deps = [ | 227 deps = [ |
| 228 ":arc_test_support", | 228 ":arc_test_support", |
| 229 "//ash/shared:app_types", | 229 "//ash/shared:app_types", |
| 230 "//base", | 230 "//base", |
| 231 "//base/test:test_support", | 231 "//base/test:test_support", |
| 232 "//chromeos", | 232 "//chromeos", |
| 233 "//components/signin/core/account_id", | |
| 234 "//components/user_manager", | |
| 235 "//components/user_manager:test_support", | |
| 233 "//device/bluetooth", | 236 "//device/bluetooth", |
| 234 "//mojo/public/cpp/system:system", | 237 "//mojo/public/cpp/system:system", |
| 235 "//testing/gmock", | 238 "//testing/gmock", |
| 236 "//testing/gtest", | 239 "//testing/gtest", |
| 237 "//ui/aura", | 240 "//ui/aura", |
| 238 "//ui/aura:test_support", | 241 "//ui/aura:test_support", |
| 239 "//ui/base:test_support", | 242 "//ui/base:test_support", |
| 240 "//ui/base/ime", | 243 "//ui/base/ime", |
| 241 "//ui/events", | 244 "//ui/events", |
| 242 "//ui/events:dom_keycode_converter", | 245 "//ui/events:dom_keycode_converter", |
| 243 "//url:url", | 246 "//url:url", |
| 244 ] | 247 ] |
| 245 } | 248 } |
| OLD | NEW |