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

Side by Side Diff: components/arc.gypi

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
« no previous file with comments | « no previous file | components/arc/BUILD.gn » ('j') | components/arc/common/arc_bridge.mojom » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/arc 8 # GN version: //components/arc
9 'target_name': 'arc', 9 'target_name': 'arc',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'arc/metrics/oom_kills_monitor.cc', 68 'arc/metrics/oom_kills_monitor.cc',
69 'arc/metrics/oom_kills_monitor.h', 69 'arc/metrics/oom_kills_monitor.h',
70 'arc/metrics/arc_metrics_service.cc', 70 'arc/metrics/arc_metrics_service.cc',
71 'arc/metrics/arc_metrics_service.h', 71 'arc/metrics/arc_metrics_service.h',
72 'arc/net/arc_net_host_impl.cc', 72 'arc/net/arc_net_host_impl.cc',
73 'arc/net/arc_net_host_impl.h', 73 'arc/net/arc_net_host_impl.h',
74 'arc/obb_mounter/arc_obb_mounter_bridge.cc', 74 'arc/obb_mounter/arc_obb_mounter_bridge.cc',
75 'arc/obb_mounter/arc_obb_mounter_bridge.h', 75 'arc/obb_mounter/arc_obb_mounter_bridge.h',
76 'arc/power/arc_power_bridge.cc', 76 'arc/power/arc_power_bridge.cc',
77 'arc/power/arc_power_bridge.h', 77 'arc/power/arc_power_bridge.h',
78 'arc/print/arc_print_bridge.cc',
79 'arc/print/arc_print_bridge.h',
78 'arc/set_wallpaper_delegate.h', 80 'arc/set_wallpaper_delegate.h',
79 'arc/storage_manager/arc_storage_manager.cc', 81 'arc/storage_manager/arc_storage_manager.cc',
80 'arc/storage_manager/arc_storage_manager.h', 82 'arc/storage_manager/arc_storage_manager.h',
81 'arc/user_data/arc_user_data_service.cc', 83 'arc/user_data/arc_user_data_service.cc',
82 'arc/user_data/arc_user_data_service.h', 84 'arc/user_data/arc_user_data_service.h',
83 'arc/window_manager/arc_window_manager_bridge.cc', 85 'arc/window_manager/arc_window_manager_bridge.cc',
84 'arc/window_manager/arc_window_manager_bridge.h', 86 'arc/window_manager/arc_window_manager_bridge.h',
85 ], 87 ],
86 }, 88 },
87 { 89 {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 'arc/common/crash_collector.mojom', 167 'arc/common/crash_collector.mojom',
166 'arc/common/file_system.mojom', 168 'arc/common/file_system.mojom',
167 'arc/common/ime.mojom', 169 'arc/common/ime.mojom',
168 'arc/common/intent_helper.mojom', 170 'arc/common/intent_helper.mojom',
169 'arc/common/metrics.mojom', 171 'arc/common/metrics.mojom',
170 'arc/common/net.mojom', 172 'arc/common/net.mojom',
171 'arc/common/notifications.mojom', 173 'arc/common/notifications.mojom',
172 'arc/common/obb_mounter.mojom', 174 'arc/common/obb_mounter.mojom',
173 'arc/common/policy.mojom', 175 'arc/common/policy.mojom',
174 'arc/common/power.mojom', 176 'arc/common/power.mojom',
177 'arc/common/print.mojom',
175 'arc/common/process.mojom', 178 'arc/common/process.mojom',
176 'arc/common/scale_factor.mojom', 179 'arc/common/scale_factor.mojom',
177 'arc/common/screen_rect.mojom', 180 'arc/common/screen_rect.mojom',
178 'arc/common/storage_manager.mojom', 181 'arc/common/storage_manager.mojom',
179 'arc/common/video.mojom', 182 'arc/common/video.mojom',
180 'arc/common/video_accelerator.mojom', 183 'arc/common/video_accelerator.mojom',
181 'arc/common/window_manager.mojom', 184 'arc/common/window_manager.mojom',
182 'arc/common/app_struct_traits.cc', 185 'arc/common/app_struct_traits.cc',
183 ], 186 ],
184 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 187 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 '../base/base.gyp:base', 232 '../base/base.gyp:base',
230 '../ipc/ipc.gyp:ipc', 233 '../ipc/ipc.gyp:ipc',
231 '../mojo/mojo_edk.gyp:mojo_system_impl', 234 '../mojo/mojo_edk.gyp:mojo_system_impl',
232 ], 235 ],
233 'sources': [ 236 'sources': [
234 'arc/standalone/arc_standalone_bridge_main.cc', 237 'arc/standalone/arc_standalone_bridge_main.cc',
235 ] 238 ]
236 } 239 }
237 ], 240 ],
238 } 241 }
OLDNEW
« no previous file with comments | « no previous file | components/arc/BUILD.gn » ('j') | components/arc/common/arc_bridge.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698