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

Side by Side Diff: components/arc.gypi

Issue 1754803003: Implement Stub for policy bridge to ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove functionality for OnPolicyChanged due to dependency issues Created 4 years, 9 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 { 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 'arc/clipboard/arc_clipboard_bridge.h', 43 'arc/clipboard/arc_clipboard_bridge.h',
44 'arc/ime/arc_ime_bridge.cc', 44 'arc/ime/arc_ime_bridge.cc',
45 'arc/ime/arc_ime_bridge.h', 45 'arc/ime/arc_ime_bridge.h',
46 'arc/ime/arc_ime_ipc_host.h', 46 'arc/ime/arc_ime_ipc_host.h',
47 'arc/ime/arc_ime_ipc_host_impl.cc', 47 'arc/ime/arc_ime_ipc_host_impl.cc',
48 'arc/ime/arc_ime_ipc_host_impl.h', 48 'arc/ime/arc_ime_ipc_host_impl.h',
49 'arc/input/arc_input_bridge.cc', 49 'arc/input/arc_input_bridge.cc',
50 'arc/input/arc_input_bridge.h', 50 'arc/input/arc_input_bridge.h',
51 'arc/net/arc_net_host_impl.cc', 51 'arc/net/arc_net_host_impl.cc',
52 'arc/net/arc_net_host_impl.h', 52 'arc/net/arc_net_host_impl.h',
53 'arc/policy/arc_policy_bridge.cc',
54 'arc/policy/arc_policy_bridge.h',
53 'arc/power/arc_power_bridge.cc', 55 'arc/power/arc_power_bridge.cc',
54 'arc/power/arc_power_bridge.h', 56 'arc/power/arc_power_bridge.h',
55 ], 57 ],
56 }, 58 },
57 { 59 {
58 # GN version: //components/arc_test_support 60 # GN version: //components/arc_test_support
59 'target_name': 'arc_test_support', 61 'target_name': 'arc_test_support',
60 'type': 'static_library', 62 'type': 'static_library',
61 'include_dirs': [ 63 'include_dirs': [
62 '..', 64 '..',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'sources': [ 107 'sources': [
106 'arc/common/app.mojom', 108 'arc/common/app.mojom',
107 'arc/common/arc_bridge.mojom', 109 'arc/common/arc_bridge.mojom',
108 'arc/common/auth.mojom', 110 'arc/common/auth.mojom',
109 'arc/common/clipboard.mojom', 111 'arc/common/clipboard.mojom',
110 'arc/common/ime.mojom', 112 'arc/common/ime.mojom',
111 'arc/common/input.mojom', 113 'arc/common/input.mojom',
112 'arc/common/intent_helper.mojom', 114 'arc/common/intent_helper.mojom',
113 'arc/common/net.mojom', 115 'arc/common/net.mojom',
114 'arc/common/notifications.mojom', 116 'arc/common/notifications.mojom',
117 'arc/common/policy.mojom',
115 'arc/common/power.mojom', 118 'arc/common/power.mojom',
116 'arc/common/process.mojom', 119 'arc/common/process.mojom',
117 'arc/common/video.mojom', 120 'arc/common/video.mojom',
118 ], 121 ],
119 }, 122 },
120 { 123 {
121 # GN version: //components/arc:arc_standalone_bridge 124 # GN version: //components/arc:arc_standalone_bridge
122 'target_name': 'arc_standalone_bridge', 125 'target_name': 'arc_standalone_bridge',
123 'type': 'executable', 126 'type': 'executable',
124 'include_dirs': [ 127 'include_dirs': [
125 '..', 128 '..',
126 ], 129 ],
127 'dependencies': [ 130 'dependencies': [
128 'arc_standalone', 131 'arc_standalone',
129 '../base/base.gyp:base', 132 '../base/base.gyp:base',
130 '../ipc/ipc.gyp:ipc', 133 '../ipc/ipc.gyp:ipc',
131 '../mojo/mojo_edk.gyp:mojo_system_impl', 134 '../mojo/mojo_edk.gyp:mojo_system_impl',
132 ], 135 ],
133 'sources': [ 136 'sources': [
134 'arc/standalone/arc_standalone_bridge_main.cc', 137 'arc/standalone/arc_standalone_bridge_main.cc',
135 ] 138 ]
136 } 139 }
137 ], 140 ],
138 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698