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

Side by Side Diff: components/arc/BUILD.gn

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
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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 static_library("arc") { 7 static_library("arc") {
8 sources = [ 8 sources = [
9 "arc_bridge_bootstrap.cc", 9 "arc_bridge_bootstrap.cc",
10 "arc_bridge_bootstrap.h", 10 "arc_bridge_bootstrap.h",
11 "arc_bridge_service.cc", 11 "arc_bridge_service.cc",
12 "arc_bridge_service.h", 12 "arc_bridge_service.h",
13 "arc_bridge_service_impl.cc", 13 "arc_bridge_service_impl.cc",
14 "arc_bridge_service_impl.h", 14 "arc_bridge_service_impl.h",
15 "arc_service_manager.cc", 15 "arc_service_manager.cc",
16 "arc_service_manager.h", 16 "arc_service_manager.h",
17 "clipboard/clipboard_bridge.h",
18 "clipboard/clipboard_bridge_impl.cc",
19 "clipboard/clipboard_bridge_impl.h",
17 "input/arc_input_bridge.h", 20 "input/arc_input_bridge.h",
18 "input/arc_input_bridge_impl.cc", 21 "input/arc_input_bridge_impl.cc",
19 "input/arc_input_bridge_impl.h", 22 "input/arc_input_bridge_impl.h",
20 ] 23 ]
21 24
22 deps = [ 25 deps = [
23 ":arc_bindings", 26 ":arc_bindings",
24 "//base", 27 "//base",
25 "//base:prefs", 28 "//base:prefs",
26 "//chromeos", 29 "//chromeos",
27 "//ipc:ipc", 30 "//ipc:ipc",
28 "//ipc/mojo:mojo", 31 "//ipc/mojo:mojo",
29 "//third_party/mojo/src/mojo/edk/system", 32 "//third_party/mojo/src/mojo/edk/system",
30 "//ui/aura", 33 "//ui/aura",
34 "//ui/base:base",
31 "//ui/events", 35 "//ui/events",
32 "//ui/events:dom_keycode_converter", 36 "//ui/events:dom_keycode_converter",
33 ] 37 ]
34 } 38 }
35 39
36 mojom("arc_bindings") { 40 mojom("arc_bindings") {
37 sources = [ 41 sources = [
38 "common/arc_bridge.mojom", 42 "common/arc_bridge.mojom",
39 ] 43 ]
40 } 44 }
(...skipping 28 matching lines...) Expand all
69 "//chromeos", 73 "//chromeos",
70 "//ipc/mojo:mojo", 74 "//ipc/mojo:mojo",
71 "//mojo/public/cpp/environment:environment", 75 "//mojo/public/cpp/environment:environment",
72 "//mojo/public/cpp/system:system", 76 "//mojo/public/cpp/system:system",
73 "//testing/gtest", 77 "//testing/gtest",
74 "//ui/aura", 78 "//ui/aura",
75 "//ui/events", 79 "//ui/events",
76 "//ui/events:dom_keycode_converter", 80 "//ui/events:dom_keycode_converter",
77 ] 81 ]
78 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698