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_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
|
hidehiko
2016/06/15 09:04:16
Please add set_wallpaper_delegate.h here.
Ditto fo
Shuhei Takahashi
2016/06/15 09:14:04
Oops, thanks for catching.
| |
| 11 "arc_bridge_bootstrap.h", | 11 "arc_bridge_bootstrap.h", |
| 12 "arc_bridge_service.cc", | 12 "arc_bridge_service.cc", |
| 13 "arc_bridge_service.h", | 13 "arc_bridge_service.h", |
| 14 "arc_bridge_service_impl.cc", | 14 "arc_bridge_service_impl.cc", |
| 15 "arc_bridge_service_impl.h", | 15 "arc_bridge_service_impl.h", |
| 16 "arc_service.cc", | 16 "arc_service.cc", |
| 17 "arc_service.h", | 17 "arc_service.h", |
| 18 "arc_service_manager.cc", | 18 "arc_service_manager.cc", |
| 19 "arc_service_manager.h", | 19 "arc_service_manager.h", |
| 20 "audio/arc_audio_bridge.cc", | 20 "audio/arc_audio_bridge.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 65 "//ash:ash", | 65 "//ash:ash", |
| 66 "//base", | 66 "//base", |
| 67 "//chromeos", | 67 "//chromeos", |
| 68 "//chromeos:power_manager_proto", | 68 "//chromeos:power_manager_proto", |
| 69 "//components/exo", | 69 "//components/exo", |
| 70 "//components/google/core/browser", | 70 "//components/google/core/browser", |
| 71 "//components/onc", | 71 "//components/onc", |
| 72 "//components/prefs", | 72 "//components/prefs", |
| 73 "//components/signin/core/account_id", | 73 "//components/signin/core/account_id", |
| 74 "//components/user_manager", | 74 "//components/user_manager", |
| 75 "//content/public/browser", | |
|
hidehiko
2016/06/15 09:04:16
No longer needed?
Shuhei Takahashi
2016/06/15 09:14:05
Done.
| |
| 75 "//device/bluetooth", | 76 "//device/bluetooth", |
| 76 "//google_apis", | 77 "//google_apis", |
| 77 "//ipc:ipc", | 78 "//ipc:ipc", |
| 78 "//ipc/mojo:mojo", | 79 "//ipc/mojo:mojo", |
| 79 "//mojo/edk/system", | 80 "//mojo/edk/system", |
| 80 "//skia", | 81 "//skia", |
| 81 "//third_party/re2:re2", | 82 "//third_party/re2:re2", |
| 82 "//ui/arc", | 83 "//ui/arc", |
| 83 "//ui/aura", | 84 "//ui/aura", |
| 84 "//ui/base:base", | 85 "//ui/base:base", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 224 | 225 |
| 225 deps = [ | 226 deps = [ |
| 226 ":arc_standalone", | 227 ":arc_standalone", |
| 227 ":arc_standalone_service", | 228 ":arc_standalone_service", |
| 228 "//base", | 229 "//base", |
| 229 "//ipc:ipc", | 230 "//ipc:ipc", |
| 230 "//ipc/mojo:mojo", | 231 "//ipc/mojo:mojo", |
| 231 "//mojo/edk/system", | 232 "//mojo/edk/system", |
| 232 ] | 233 ] |
| 233 } | 234 } |
| OLD | NEW |