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

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

Issue 1829703002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test and removed all changes from arc_auth_service Created 4 years, 9 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",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "common/process.mojom", 82 "common/process.mojom",
83 "common/video.mojom", 83 "common/video.mojom",
84 ] 84 ]
85 } 85 }
86 86
87 static_library("arc_test_support") { 87 static_library("arc_test_support") {
88 testonly = true 88 testonly = true
89 sources = [ 89 sources = [
90 "test/fake_app_instance.cc", 90 "test/fake_app_instance.cc",
91 "test/fake_app_instance.h", 91 "test/fake_app_instance.h",
92 "test/fake_arc_bridge_bootstrap.cc",
93 "test/fake_arc_bridge_bootstrap.h",
92 "test/fake_arc_bridge_instance.cc", 94 "test/fake_arc_bridge_instance.cc",
93 "test/fake_arc_bridge_instance.h", 95 "test/fake_arc_bridge_instance.h",
94 "test/fake_arc_bridge_service.cc", 96 "test/fake_arc_bridge_service.cc",
95 "test/fake_arc_bridge_service.h", 97 "test/fake_arc_bridge_service.h",
96 "test/fake_notifications_instance.cc", 98 "test/fake_notifications_instance.cc",
97 "test/fake_notifications_instance.h", 99 "test/fake_notifications_instance.h",
98 ] 100 ]
99 101
100 deps = [ 102 deps = [
101 ":arc", 103 ":arc",
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 177
176 deps = [ 178 deps = [
177 ":arc_standalone", 179 ":arc_standalone",
178 ":arc_standalone_service", 180 ":arc_standalone_service",
179 "//base", 181 "//base",
180 "//ipc:ipc", 182 "//ipc:ipc",
181 "//ipc/mojo:mojo", 183 "//ipc/mojo:mojo",
182 "//mojo/edk/system", 184 "//mojo/edk/system",
183 ] 185 ]
184 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698