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

Side by Side Diff: components/arc.gypi

Issue 2093563007: Add a floating close button for arc custom notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move arc_service etc into arc_base target, update //ui/arc and add to .gn 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 { 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_base',
15 'arc_mojo_bindings', 16 'arc_mojo_bindings',
16 'components.gyp:exo', 17 'components.gyp:exo',
17 'components.gyp:onc_component', 18 'components.gyp:onc_component',
18 '../base/base.gyp:base', 19 '../base/base.gyp:base',
19 '../chromeos/chromeos.gyp:chromeos', 20 '../chromeos/chromeos.gyp:chromeos',
20 '../chromeos/chromeos.gyp:power_manager_proto', 21 '../chromeos/chromeos.gyp:power_manager_proto',
21 '../ipc/ipc.gyp:ipc', 22 '../ipc/ipc.gyp:ipc',
22 '../third_party/re2/re2.gyp:re2', 23 '../third_party/re2/re2.gyp:re2',
23 '../skia/skia.gyp:skia', 24 '../skia/skia.gyp:skia',
24 '../ui/arc/arc.gyp:arc', 25 '../ui/arc/arc.gyp:arc',
25 '../ui/aura/aura.gyp:aura', 26 '../ui/aura/aura.gyp:aura',
26 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', 27 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime',
27 '../ui/base/ui_base.gyp:ui_base', 28 '../ui/base/ui_base.gyp:ui_base',
28 '../ui/base/ui_base.gyp:ui_base_test_support', 29 '../ui/base/ui_base.gyp:ui_base_test_support',
29 '../ui/events/events.gyp:events_base', 30 '../ui/events/events.gyp:events_base',
30 '../ui/keyboard/keyboard.gyp:keyboard', 31 '../ui/keyboard/keyboard.gyp:keyboard',
31 '../url/url.gyp:url_lib', 32 '../url/url.gyp:url_lib',
32 ], 33 ],
33 'sources': [ 34 'sources': [
34 'arc/arc_bridge_bootstrap.cc', 35 'arc/arc_bridge_bootstrap.cc',
35 'arc/arc_bridge_bootstrap.h', 36 'arc/arc_bridge_bootstrap.h',
36 'arc/arc_bridge_service.cc',
37 'arc/arc_bridge_service.h',
38 'arc/arc_bridge_service_impl.cc', 37 'arc/arc_bridge_service_impl.cc',
39 'arc/arc_bridge_service_impl.h', 38 'arc/arc_bridge_service_impl.h',
40 'arc/arc_service.cc',
41 'arc/arc_service.h',
42 'arc/arc_service_manager.cc', 39 'arc/arc_service_manager.cc',
43 'arc/arc_service_manager.h', 40 'arc/arc_service_manager.h',
44 'arc/audio/arc_audio_bridge.cc', 41 'arc/audio/arc_audio_bridge.cc',
45 'arc/audio/arc_audio_bridge.h', 42 'arc/audio/arc_audio_bridge.h',
46 'arc/bitmap/bitmap_type_converters.cc',
47 'arc/bitmap/bitmap_type_converters.h',
48 'arc/bluetooth/arc_bluetooth_bridge.cc', 43 'arc/bluetooth/arc_bluetooth_bridge.cc',
49 'arc/bluetooth/arc_bluetooth_bridge.h', 44 'arc/bluetooth/arc_bluetooth_bridge.h',
50 'arc/bluetooth/bluetooth_type_converters.cc', 45 'arc/bluetooth/bluetooth_type_converters.cc',
51 'arc/bluetooth/bluetooth_type_converters.h', 46 'arc/bluetooth/bluetooth_type_converters.h',
52 'arc/clipboard/arc_clipboard_bridge.cc', 47 'arc/clipboard/arc_clipboard_bridge.cc',
53 'arc/clipboard/arc_clipboard_bridge.h', 48 'arc/clipboard/arc_clipboard_bridge.h',
54 'arc/crash_collector/arc_crash_collector_bridge.cc', 49 'arc/crash_collector/arc_crash_collector_bridge.cc',
55 'arc/crash_collector/arc_crash_collector_bridge.h', 50 'arc/crash_collector/arc_crash_collector_bridge.h',
56 'arc/ime/arc_ime_bridge.h', 51 'arc/ime/arc_ime_bridge.h',
57 'arc/ime/arc_ime_bridge_impl.cc', 52 'arc/ime/arc_ime_bridge_impl.cc',
(...skipping 24 matching lines...) Expand all
82 'arc/set_wallpaper_delegate.h', 77 'arc/set_wallpaper_delegate.h',
83 'arc/storage_manager/arc_storage_manager.cc', 78 'arc/storage_manager/arc_storage_manager.cc',
84 'arc/storage_manager/arc_storage_manager.h', 79 'arc/storage_manager/arc_storage_manager.h',
85 'arc/user_data/arc_user_data_service.cc', 80 'arc/user_data/arc_user_data_service.cc',
86 'arc/user_data/arc_user_data_service.h', 81 'arc/user_data/arc_user_data_service.h',
87 'arc/window_manager/arc_window_manager_bridge.cc', 82 'arc/window_manager/arc_window_manager_bridge.cc',
88 'arc/window_manager/arc_window_manager_bridge.h', 83 'arc/window_manager/arc_window_manager_bridge.h',
89 ], 84 ],
90 }, 85 },
91 { 86 {
87 # GN version: //components/arc:arc_base
88 'target_name': 'arc_base',
89 'type': 'static_library',
90 'include_dirs': [
91 '..',
92 ],
93 'dependencies': [
94 '../base/base.gyp:base',
95 '../chromeos/chromeos.gyp:chromeos',
96 '../skia/skia.gyp:skia',
97 ],
98 'sources': [
99 'arc/arc_bridge_service.cc',
100 'arc/arc_bridge_service.h',
101 'arc/arc_service.cc',
102 'arc/arc_service.h',
103 'arc/bitmap/bitmap_type_converters.cc',
104 'arc/bitmap/bitmap_type_converters.h',
105 ],
106 },
107 {
92 # GN version: //components/arc_test_support 108 # GN version: //components/arc_test_support
93 'target_name': 'arc_test_support', 109 'target_name': 'arc_test_support',
94 'type': 'static_library', 110 'type': 'static_library',
95 'include_dirs': [ 111 'include_dirs': [
96 '..', 112 '..',
97 ], 113 ],
98 'dependencies': [ 114 'dependencies': [
99 '../base/base.gyp:base', 115 '../base/base.gyp:base',
100 'arc', 116 'arc',
101 'arc_mojo_bindings', 117 'arc_mojo_bindings',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 '../base/base.gyp:base', 216 '../base/base.gyp:base',
201 '../ipc/ipc.gyp:ipc', 217 '../ipc/ipc.gyp:ipc',
202 '../mojo/mojo_edk.gyp:mojo_system_impl', 218 '../mojo/mojo_edk.gyp:mojo_system_impl',
203 ], 219 ],
204 'sources': [ 220 'sources': [
205 'arc/standalone/arc_standalone_bridge_main.cc', 221 'arc/standalone/arc_standalone_bridge_main.cc',
206 ] 222 ]
207 } 223 }
208 ], 224 ],
209 } 225 }
OLDNEW
« no previous file with comments | « .gn ('k') | components/arc/BUILD.gn » ('j') | components/arc/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698