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

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

Issue 1553613002: Add ArcAuthService to handle IPC request from ARC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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 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",
(...skipping 27 matching lines...) Expand all
38 38
39 public_deps = [ 39 public_deps = [
40 ":arc_bindings", 40 ":arc_bindings",
41 ] 41 ]
42 } 42 }
43 43
44 mojom("arc_bindings") { 44 mojom("arc_bindings") {
45 sources = [ 45 sources = [
46 "common/app.mojom", 46 "common/app.mojom",
47 "common/arc_bridge.mojom", 47 "common/arc_bridge.mojom",
48 "common/auth.mojom",
48 "common/input.mojom", 49 "common/input.mojom",
49 "common/notifications.mojom", 50 "common/notifications.mojom",
50 "common/power.mojom", 51 "common/power.mojom",
51 "common/process.mojom", 52 "common/process.mojom",
52 "common/settings.mojom", 53 "common/settings.mojom",
53 ] 54 ]
54 } 55 }
55 56
56 static_library("arc_test_support") { 57 static_library("arc_test_support") {
57 testonly = true 58 testonly = true
(...skipping 28 matching lines...) Expand all
86 "//chromeos", 87 "//chromeos",
87 "//ipc/mojo:mojo", 88 "//ipc/mojo:mojo",
88 "//mojo/public/cpp/environment:environment", 89 "//mojo/public/cpp/environment:environment",
89 "//mojo/public/cpp/system:system", 90 "//mojo/public/cpp/system:system",
90 "//testing/gtest", 91 "//testing/gtest",
91 "//ui/aura", 92 "//ui/aura",
92 "//ui/events", 93 "//ui/events",
93 "//ui/events:dom_keycode_converter", 94 "//ui/events:dom_keycode_converter",
94 ] 95 ]
95 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698