Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: components/arc/BUILD.gn

Issue 2165643004: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved ArcUserDataService to make calls to ArcAuthService Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 "metrics/oom_kills_monitor.h", 47 "metrics/oom_kills_monitor.h",
48 "net/arc_net_host_impl.cc", 48 "net/arc_net_host_impl.cc",
49 "net/arc_net_host_impl.h", 49 "net/arc_net_host_impl.h",
50 "obb_mounter/arc_obb_mounter_bridge.cc", 50 "obb_mounter/arc_obb_mounter_bridge.cc",
51 "obb_mounter/arc_obb_mounter_bridge.h", 51 "obb_mounter/arc_obb_mounter_bridge.h",
52 "power/arc_power_bridge.cc", 52 "power/arc_power_bridge.cc",
53 "power/arc_power_bridge.h", 53 "power/arc_power_bridge.h",
54 "set_wallpaper_delegate.h", 54 "set_wallpaper_delegate.h",
55 "storage_manager/arc_storage_manager.cc", 55 "storage_manager/arc_storage_manager.cc",
56 "storage_manager/arc_storage_manager.h", 56 "storage_manager/arc_storage_manager.h",
57 "user_data/arc_user_data_service.cc",
58 "user_data/arc_user_data_service.h",
59 ] 57 ]
60 58
61 deps = [ 59 deps = [
62 ":arc_base", 60 ":arc_base",
63 "//ash:ash", 61 "//ash:ash",
64 "//base", 62 "//base",
65 "//chromeos", 63 "//chromeos",
66 "//chromeos:power_manager_proto", 64 "//chromeos:power_manager_proto",
67 "//components/exo", 65 "//components/exo",
68 "//components/google/core/browser", 66 "//components/google/core/browser",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 mojom("arc_bindings") { 127 mojom("arc_bindings") {
130 sources = [ 128 sources = [
131 "common/app.mojom", 129 "common/app.mojom",
132 "common/arc_bridge.mojom", 130 "common/arc_bridge.mojom",
133 "common/audio.mojom", 131 "common/audio.mojom",
134 "common/auth.mojom", 132 "common/auth.mojom",
135 "common/bitmap.mojom", 133 "common/bitmap.mojom",
136 "common/bluetooth.mojom", 134 "common/bluetooth.mojom",
137 "common/clipboard.mojom", 135 "common/clipboard.mojom",
138 "common/crash_collector.mojom", 136 "common/crash_collector.mojom",
137 "common/enterprise_reporting.mojom",
139 "common/file_system.mojom", 138 "common/file_system.mojom",
140 "common/ime.mojom", 139 "common/ime.mojom",
141 "common/intent_helper.mojom", 140 "common/intent_helper.mojom",
142 "common/metrics.mojom", 141 "common/metrics.mojom",
143 "common/net.mojom", 142 "common/net.mojom",
144 "common/notifications.mojom", 143 "common/notifications.mojom",
145 "common/obb_mounter.mojom", 144 "common/obb_mounter.mojom",
146 "common/policy.mojom", 145 "common/policy.mojom",
147 "common/power.mojom", 146 "common/power.mojom",
148 "common/process.mojom", 147 "common/process.mojom",
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 ] 257 ]
259 258
260 deps = [ 259 deps = [
261 ":arc_standalone", 260 ":arc_standalone",
262 ":arc_standalone_service", 261 ":arc_standalone_service",
263 "//base", 262 "//base",
264 "//ipc:ipc", 263 "//ipc:ipc",
265 "//mojo/edk/system", 264 "//mojo/edk/system",
266 ] 265 ]
267 } 266 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698