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

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

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 | « components/arc.gypi ('k') | components/arc/DEPS » ('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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 static_library("arc") { 8 static_library("arc") {
9 sources = [ 9 sources = [
10 "arc_bridge_bootstrap.cc", 10 "arc_bridge_bootstrap.cc",
11 "arc_bridge_bootstrap.h", 11 "arc_bridge_bootstrap.h",
12 "arc_bridge_service.cc", 12 "arc_bridge_service.cc",
13 "arc_bridge_service.h", 13 "arc_bridge_service.h",
14 "arc_bridge_service_impl.cc", 14 "arc_bridge_service_impl.cc",
15 "arc_bridge_service_impl.h", 15 "arc_bridge_service_impl.h",
16 "arc_service.cc", 16 "arc_service.cc",
17 "arc_service.h", 17 "arc_service.h",
18 "arc_service_manager.cc", 18 "arc_service_manager.cc",
19 "arc_service_manager.h", 19 "arc_service_manager.h",
20 "audio/arc_audio_bridge.cc", 20 "audio/arc_audio_bridge.cc",
21 "audio/arc_audio_bridge.h", 21 "audio/arc_audio_bridge.h",
22 "bitmap/bitmap_type_converters.cc",
23 "bitmap/bitmap_type_converters.h",
22 "bluetooth/arc_bluetooth_bridge.cc", 24 "bluetooth/arc_bluetooth_bridge.cc",
23 "bluetooth/arc_bluetooth_bridge.h", 25 "bluetooth/arc_bluetooth_bridge.h",
24 "bluetooth/bluetooth_type_converters.cc", 26 "bluetooth/bluetooth_type_converters.cc",
25 "bluetooth/bluetooth_type_converters.h", 27 "bluetooth/bluetooth_type_converters.h",
26 "clipboard/arc_clipboard_bridge.cc", 28 "clipboard/arc_clipboard_bridge.cc",
27 "clipboard/arc_clipboard_bridge.h", 29 "clipboard/arc_clipboard_bridge.h",
28 "crash_collector/arc_crash_collector_bridge.cc", 30 "crash_collector/arc_crash_collector_bridge.cc",
29 "crash_collector/arc_crash_collector_bridge.h", 31 "crash_collector/arc_crash_collector_bridge.h",
30 "ime/arc_ime_bridge.h", 32 "ime/arc_ime_bridge.h",
31 "ime/arc_ime_bridge_impl.cc", 33 "ime/arc_ime_bridge_impl.cc",
(...skipping 25 matching lines...) Expand all
57 "//chromeos:power_manager_proto", 59 "//chromeos:power_manager_proto",
58 "//components/exo", 60 "//components/exo",
59 "//components/onc", 61 "//components/onc",
60 "//components/prefs", 62 "//components/prefs",
61 "//components/signin/core/account_id", 63 "//components/signin/core/account_id",
62 "//device/bluetooth", 64 "//device/bluetooth",
63 "//google_apis", 65 "//google_apis",
64 "//ipc:ipc", 66 "//ipc:ipc",
65 "//ipc/mojo:mojo", 67 "//ipc/mojo:mojo",
66 "//mojo/edk/system", 68 "//mojo/edk/system",
69 "//skia",
67 "//third_party/re2:re2", 70 "//third_party/re2:re2",
68 "//ui/arc", 71 "//ui/arc",
69 "//ui/aura", 72 "//ui/aura",
70 "//ui/base:base", 73 "//ui/base:base",
71 "//ui/base/ime", 74 "//ui/base/ime",
72 "//ui/display:display", 75 "//ui/display:display",
73 "//ui/events", 76 "//ui/events",
74 "//ui/events:dom_keycode_converter", 77 "//ui/events:dom_keycode_converter",
75 "//url:url", 78 "//url:url",
76 ] 79 ]
77 80
78 public_deps = [ 81 public_deps = [
79 ":arc_bindings", 82 ":arc_bindings",
80 ] 83 ]
81 } 84 }
82 85
83 mojom("arc_bindings") { 86 mojom("arc_bindings") {
84 sources = [ 87 sources = [
85 "common/app.mojom", 88 "common/app.mojom",
86 "common/arc_bridge.mojom", 89 "common/arc_bridge.mojom",
87 "common/audio.mojom", 90 "common/audio.mojom",
88 "common/auth.mojom", 91 "common/auth.mojom",
92 "common/bitmap.mojom",
89 "common/bluetooth.mojom", 93 "common/bluetooth.mojom",
90 "common/clipboard.mojom", 94 "common/clipboard.mojom",
91 "common/crash_collector.mojom", 95 "common/crash_collector.mojom",
92 "common/ime.mojom", 96 "common/ime.mojom",
93 "common/intent_helper.mojom", 97 "common/intent_helper.mojom",
94 "common/metrics.mojom", 98 "common/metrics.mojom",
95 "common/net.mojom", 99 "common/net.mojom",
96 "common/notifications.mojom", 100 "common/notifications.mojom",
97 "common/policy.mojom", 101 "common/policy.mojom",
98 "common/power.mojom", 102 "common/power.mojom",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 201
198 deps = [ 202 deps = [
199 ":arc_standalone", 203 ":arc_standalone",
200 ":arc_standalone_service", 204 ":arc_standalone_service",
201 "//base", 205 "//base",
202 "//ipc:ipc", 206 "//ipc:ipc",
203 "//ipc/mojo:mojo", 207 "//ipc/mojo:mojo",
204 "//mojo/edk/system", 208 "//mojo/edk/system",
205 ] 209 ]
206 } 210 }
OLDNEW
« no previous file with comments | « components/arc.gypi ('k') | components/arc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698