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

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: Fix build failure Created 4 years, 8 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 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 23 matching lines...) Expand all
55 "//chromeos:power_manager_proto", 57 "//chromeos:power_manager_proto",
56 "//components/exo", 58 "//components/exo",
57 "//components/onc", 59 "//components/onc",
58 "//components/prefs", 60 "//components/prefs",
59 "//components/signin/core/account_id", 61 "//components/signin/core/account_id",
60 "//device/bluetooth", 62 "//device/bluetooth",
61 "//google_apis", 63 "//google_apis",
62 "//ipc:ipc", 64 "//ipc:ipc",
63 "//ipc/mojo:mojo", 65 "//ipc/mojo:mojo",
64 "//mojo/edk/system", 66 "//mojo/edk/system",
67 "//skia",
hidehiko 2016/04/15 07:09:09 Is this needs to be in .gyp, too?
yoshiki 2016/04/15 14:36:38 In .gyp, there is the reference to third_party/ski
hidehiko 2016/04/18 17:54:41 ? Looks no entry in arc.gyp?
yoshiki 2016/04/18 19:21:22 Sorry, I was confused with the other working patch
65 "//third_party/re2:re2", 68 "//third_party/re2:re2",
66 "//ui/arc", 69 "//ui/arc",
67 "//ui/aura", 70 "//ui/aura",
68 "//ui/base:base", 71 "//ui/base:base",
69 "//ui/base/ime", 72 "//ui/base/ime",
70 "//ui/display:display", 73 "//ui/display:display",
71 "//ui/events", 74 "//ui/events",
72 "//ui/events:dom_keycode_converter", 75 "//ui/events:dom_keycode_converter",
73 "//url:url", 76 "//url:url",
74 ] 77 ]
75 78
76 public_deps = [ 79 public_deps = [
77 ":arc_bindings", 80 ":arc_bindings",
78 ] 81 ]
79 } 82 }
80 83
81 mojom("arc_bindings") { 84 mojom("arc_bindings") {
82 sources = [ 85 sources = [
83 "common/app.mojom", 86 "common/app.mojom",
84 "common/arc_bridge.mojom", 87 "common/arc_bridge.mojom",
85 "common/audio.mojom", 88 "common/audio.mojom",
86 "common/auth.mojom", 89 "common/auth.mojom",
90 "common/bitmap.mojom",
87 "common/bluetooth.mojom", 91 "common/bluetooth.mojom",
88 "common/clipboard.mojom", 92 "common/clipboard.mojom",
89 "common/crash_collector.mojom", 93 "common/crash_collector.mojom",
90 "common/ime.mojom", 94 "common/ime.mojom",
91 "common/input.mojom", 95 "common/input.mojom",
92 "common/intent_helper.mojom", 96 "common/intent_helper.mojom",
93 "common/net.mojom", 97 "common/net.mojom",
94 "common/notifications.mojom", 98 "common/notifications.mojom",
95 "common/policy.mojom", 99 "common/policy.mojom",
96 "common/power.mojom", 100 "common/power.mojom",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 197
194 deps = [ 198 deps = [
195 ":arc_standalone", 199 ":arc_standalone",
196 ":arc_standalone_service", 200 ":arc_standalone_service",
197 "//base", 201 "//base",
198 "//ipc:ipc", 202 "//ipc:ipc",
199 "//ipc/mojo:mojo", 203 "//ipc/mojo:mojo",
200 "//mojo/edk/system", 204 "//mojo/edk/system",
201 ] 205 ]
202 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698