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

Side by Side Diff: components/arc.gypi

Issue 1883473002: arc: Support more types of notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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') | no next file with comments »
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',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 'arc_mojo_bindings', 15 'arc_mojo_bindings',
16 'components.gyp:exo', 16 'components.gyp:exo',
17 'components.gyp:onc_component', 17 'components.gyp:onc_component',
18 '../base/base.gyp:base', 18 '../base/base.gyp:base',
19 '../chromeos/chromeos.gyp:chromeos', 19 '../chromeos/chromeos.gyp:chromeos',
20 '../chromeos/chromeos.gyp:power_manager_proto', 20 '../chromeos/chromeos.gyp:power_manager_proto',
21 '../ipc/ipc.gyp:ipc', 21 '../ipc/ipc.gyp:ipc',
22 '../third_party/re2/re2.gyp:re2', 22 '../third_party/re2/re2.gyp:re2',
23 '../skia/skia.gyp:skia',
23 '../ui/arc/arc.gyp:arc', 24 '../ui/arc/arc.gyp:arc',
24 '../ui/aura/aura.gyp:aura', 25 '../ui/aura/aura.gyp:aura',
25 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 26 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
26 '../ui/base/ui_base.gyp:ui_base', 27 '../ui/base/ui_base.gyp:ui_base',
27 '../ui/base/ui_base.gyp:ui_base_test_support', 28 '../ui/base/ui_base.gyp:ui_base_test_support',
28 '../ui/events/events.gyp:events_base', 29 '../ui/events/events.gyp:events_base',
29 '../url/url.gyp:url_lib', 30 '../url/url.gyp:url_lib',
30 ], 31 ],
31 'sources': [ 32 'sources': [
32 'arc/arc_bridge_bootstrap.cc', 33 'arc/arc_bridge_bootstrap.cc',
33 'arc/arc_bridge_bootstrap.h', 34 'arc/arc_bridge_bootstrap.h',
34 'arc/arc_bridge_service.cc', 35 'arc/arc_bridge_service.cc',
35 'arc/arc_bridge_service.h', 36 'arc/arc_bridge_service.h',
36 'arc/arc_bridge_service_impl.cc', 37 'arc/arc_bridge_service_impl.cc',
37 'arc/arc_bridge_service_impl.h', 38 'arc/arc_bridge_service_impl.h',
38 'arc/arc_service.cc', 39 'arc/arc_service.cc',
39 'arc/arc_service.h', 40 'arc/arc_service.h',
40 'arc/arc_service_manager.cc', 41 'arc/arc_service_manager.cc',
41 'arc/arc_service_manager.h', 42 'arc/arc_service_manager.h',
42 'arc/audio/arc_audio_bridge.cc', 43 'arc/audio/arc_audio_bridge.cc',
43 'arc/audio/arc_audio_bridge.h', 44 'arc/audio/arc_audio_bridge.h',
45 'arc/bitmap/bitmap_type_converters.cc',
46 'arc/bitmap/bitmap_type_converters.h',
44 'arc/bluetooth/arc_bluetooth_bridge.cc', 47 'arc/bluetooth/arc_bluetooth_bridge.cc',
45 'arc/bluetooth/arc_bluetooth_bridge.h', 48 'arc/bluetooth/arc_bluetooth_bridge.h',
46 'arc/bluetooth/bluetooth_type_converters.cc', 49 'arc/bluetooth/bluetooth_type_converters.cc',
47 'arc/bluetooth/bluetooth_type_converters.h', 50 'arc/bluetooth/bluetooth_type_converters.h',
48 'arc/clipboard/arc_clipboard_bridge.cc', 51 'arc/clipboard/arc_clipboard_bridge.cc',
49 'arc/clipboard/arc_clipboard_bridge.h', 52 'arc/clipboard/arc_clipboard_bridge.h',
50 'arc/crash_collector/arc_crash_collector_bridge.cc', 53 'arc/crash_collector/arc_crash_collector_bridge.cc',
51 'arc/crash_collector/arc_crash_collector_bridge.h', 54 'arc/crash_collector/arc_crash_collector_bridge.h',
52 'arc/ime/arc_ime_bridge.h', 55 'arc/ime/arc_ime_bridge.h',
53 'arc/ime/arc_ime_bridge_impl.cc', 56 'arc/ime/arc_ime_bridge_impl.cc',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'target_name': 'arc_mojo_bindings', 105 'target_name': 'arc_mojo_bindings',
103 'type': 'static_library', 106 'type': 'static_library',
104 'includes': [ 107 'includes': [
105 '../mojo/mojom_bindings_generator.gypi', 108 '../mojo/mojom_bindings_generator.gypi',
106 ], 109 ],
107 'sources': [ 110 'sources': [
108 'arc/common/app.mojom', 111 'arc/common/app.mojom',
109 'arc/common/arc_bridge.mojom', 112 'arc/common/arc_bridge.mojom',
110 'arc/common/audio.mojom', 113 'arc/common/audio.mojom',
111 'arc/common/auth.mojom', 114 'arc/common/auth.mojom',
115 'arc/common/bitmap.mojom',
112 'arc/common/bluetooth.mojom', 116 'arc/common/bluetooth.mojom',
113 'arc/common/clipboard.mojom', 117 'arc/common/clipboard.mojom',
114 'arc/common/crash_collector.mojom', 118 'arc/common/crash_collector.mojom',
115 'arc/common/ime.mojom', 119 'arc/common/ime.mojom',
116 'arc/common/intent_helper.mojom', 120 'arc/common/intent_helper.mojom',
117 'arc/common/metrics.mojom', 121 'arc/common/metrics.mojom',
118 'arc/common/net.mojom', 122 'arc/common/net.mojom',
119 'arc/common/notifications.mojom', 123 'arc/common/notifications.mojom',
120 'arc/common/policy.mojom', 124 'arc/common/policy.mojom',
121 'arc/common/power.mojom', 125 'arc/common/power.mojom',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 '../base/base.gyp:base', 174 '../base/base.gyp:base',
171 '../ipc/ipc.gyp:ipc', 175 '../ipc/ipc.gyp:ipc',
172 '../mojo/mojo_edk.gyp:mojo_system_impl', 176 '../mojo/mojo_edk.gyp:mojo_system_impl',
173 ], 177 ],
174 'sources': [ 178 'sources': [
175 'arc/standalone/arc_standalone_bridge_main.cc', 179 'arc/standalone/arc_standalone_bridge_main.cc',
176 ] 180 ]
177 } 181 }
178 ], 182 ],
179 } 183 }
OLDNEW
« no previous file with comments | « no previous file | components/arc/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698