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

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

Issue 2115863002: Stub for ARC print Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Stub for ARC print Bridge 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 "metrics/arc_metrics_service.h", 42 "metrics/arc_metrics_service.h",
43 "metrics/oom_kills_histogram.h", 43 "metrics/oom_kills_histogram.h",
44 "metrics/oom_kills_monitor.cc", 44 "metrics/oom_kills_monitor.cc",
45 "metrics/oom_kills_monitor.h", 45 "metrics/oom_kills_monitor.h",
46 "net/arc_net_host_impl.cc", 46 "net/arc_net_host_impl.cc",
47 "net/arc_net_host_impl.h", 47 "net/arc_net_host_impl.h",
48 "obb_mounter/arc_obb_mounter_bridge.cc", 48 "obb_mounter/arc_obb_mounter_bridge.cc",
49 "obb_mounter/arc_obb_mounter_bridge.h", 49 "obb_mounter/arc_obb_mounter_bridge.h",
50 "power/arc_power_bridge.cc", 50 "power/arc_power_bridge.cc",
51 "power/arc_power_bridge.h", 51 "power/arc_power_bridge.h",
52 "print/arc_print_bridge.cc",
53 "print/arc_print_bridge.h",
52 "set_wallpaper_delegate.h", 54 "set_wallpaper_delegate.h",
53 "storage_manager/arc_storage_manager.cc", 55 "storage_manager/arc_storage_manager.cc",
54 "storage_manager/arc_storage_manager.h", 56 "storage_manager/arc_storage_manager.h",
55 "user_data/arc_user_data_service.cc", 57 "user_data/arc_user_data_service.cc",
56 "user_data/arc_user_data_service.h", 58 "user_data/arc_user_data_service.h",
57 "window_manager/arc_window_manager_bridge.cc", 59 "window_manager/arc_window_manager_bridge.cc",
58 "window_manager/arc_window_manager_bridge.h", 60 "window_manager/arc_window_manager_bridge.h",
59 ] 61 ]
60 62
61 deps = [ 63 deps = [
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "common/crash_collector.mojom", 139 "common/crash_collector.mojom",
138 "common/file_system.mojom", 140 "common/file_system.mojom",
139 "common/ime.mojom", 141 "common/ime.mojom",
140 "common/intent_helper.mojom", 142 "common/intent_helper.mojom",
141 "common/metrics.mojom", 143 "common/metrics.mojom",
142 "common/net.mojom", 144 "common/net.mojom",
143 "common/notifications.mojom", 145 "common/notifications.mojom",
144 "common/obb_mounter.mojom", 146 "common/obb_mounter.mojom",
145 "common/policy.mojom", 147 "common/policy.mojom",
146 "common/power.mojom", 148 "common/power.mojom",
149 "common/print.mojom",
147 "common/process.mojom", 150 "common/process.mojom",
148 "common/scale_factor.mojom", 151 "common/scale_factor.mojom",
149 "common/screen_rect.mojom", 152 "common/screen_rect.mojom",
150 "common/storage_manager.mojom", 153 "common/storage_manager.mojom",
151 "common/video.mojom", 154 "common/video.mojom",
152 "common/video_accelerator.mojom", 155 "common/video_accelerator.mojom",
153 "common/window_manager.mojom", 156 "common/window_manager.mojom",
154 ] 157 ]
155 158
156 deps = [ 159 deps = [
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 ] 258 ]
256 259
257 deps = [ 260 deps = [
258 ":arc_standalone", 261 ":arc_standalone",
259 ":arc_standalone_service", 262 ":arc_standalone_service",
260 "//base", 263 "//base",
261 "//ipc:ipc", 264 "//ipc:ipc",
262 "//mojo/edk/system", 265 "//mojo/edk/system",
263 ] 266 ]
264 } 267 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698