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

Side by Side Diff: components/arc.gypi

Issue 1495723004: Minimum implementation of ARC clipboard Bridge (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the fakes Created 5 years 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/arc_bridge_service.h » ('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',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 'arc_mojo_bindings', 15 'arc_mojo_bindings',
16 '../base/base.gyp:base', 16 '../base/base.gyp:base',
17 '../chromeos/chromeos.gyp:chromeos', 17 '../chromeos/chromeos.gyp:chromeos',
18 '../ipc/ipc.gyp:ipc', 18 '../ipc/ipc.gyp:ipc',
19 '../ui/aura/aura.gyp:aura', 19 '../ui/aura/aura.gyp:aura',
20 '../ui/base/ui_base.gyp:ui_base',
20 '../ui/events/events.gyp:events_base', 21 '../ui/events/events.gyp:events_base',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 'arc/arc_bridge_bootstrap.cc', 24 'arc/arc_bridge_bootstrap.cc',
24 'arc/arc_bridge_bootstrap.h', 25 'arc/arc_bridge_bootstrap.h',
25 'arc/arc_bridge_service.cc', 26 'arc/arc_bridge_service.cc',
26 'arc/arc_bridge_service.h', 27 'arc/arc_bridge_service.h',
27 'arc/arc_bridge_service_impl.cc', 28 'arc/arc_bridge_service_impl.cc',
28 'arc/arc_bridge_service_impl.h', 29 'arc/arc_bridge_service_impl.h',
29 'arc/arc_service_manager.cc', 30 'arc/arc_service_manager.cc',
30 'arc/arc_service_manager.h', 31 'arc/arc_service_manager.h',
31 'arc/input/arc_input_bridge.h', 32 'arc/input/arc_input_bridge.h',
32 'arc/input/arc_input_bridge_impl.cc', 33 'arc/input/arc_input_bridge_impl.cc',
33 'arc/input/arc_input_bridge_impl.h', 34 'arc/input/arc_input_bridge_impl.h',
35 'arc/clipboard/clipboard_bridge.h',
36 'arc/clipboard/clipboard_bridge_impl.cc',
37 'arc/clipboard/clipboard_bridge_impl.h',
34 ], 38 ],
35 }, 39 },
36 { 40 {
37 # GN version: //components/arc_test_support 41 # GN version: //components/arc_test_support
38 'target_name': 'arc_test_support', 42 'target_name': 'arc_test_support',
39 'type': 'static_library', 43 'type': 'static_library',
40 'include_dirs': [ 44 'include_dirs': [
41 '..', 45 '..',
42 ], 46 ],
43 'dependencies': [ 47 'dependencies': [
(...skipping 13 matching lines...) Expand all
57 'type': 'static_library', 61 'type': 'static_library',
58 'includes': [ 62 'includes': [
59 '../third_party/mojo/mojom_bindings_generator.gypi', 63 '../third_party/mojo/mojom_bindings_generator.gypi',
60 ], 64 ],
61 'sources': [ 65 'sources': [
62 'arc/common/arc_bridge.mojom', 66 'arc/common/arc_bridge.mojom',
63 ], 67 ],
64 }, 68 },
65 ], 69 ],
66 } 70 }
OLDNEW
« no previous file with comments | « no previous file | components/arc/BUILD.gn » ('j') | components/arc/arc_bridge_service.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698