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

Unified Diff: services/resource_coordinator/BUILD.gn

Issue 2710823003: NOCOMMIT prototype: GRC service plumbing and process priority
Patch Set: Buildfixes Created 3 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 side-by-side diff with in-line comments
Download patch
Index: services/resource_coordinator/BUILD.gn
diff --git a/services/resource_coordinator/BUILD.gn b/services/resource_coordinator/BUILD.gn
index 9c5f07ef5f1707e70e49b56a7cffdb51393af16b..8dc73d62844d28ca15ee5cb338d1d8c1f83f719c 100644
--- a/services/resource_coordinator/BUILD.gn
+++ b/services/resource_coordinator/BUILD.gn
@@ -2,10 +2,19 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//services/service_manager/public/cpp/service.gni")
+import("//services/service_manager/public/service_manifest.gni")
+
source_set("lib") {
sources = [
+ "coordination_unit.cc",
+ "coordination_unit.h",
+ "coordination_unit_provider.cc",
+ "coordination_unit_provider.h",
"memory/coordinator/coordinator_impl.cc",
"memory/coordinator/coordinator_impl.h",
+ "resource_coordinator_service.cc",
+ "resource_coordinator_service.h",
]
public_deps = [
@@ -13,6 +22,15 @@ source_set("lib") {
"//services/resource_coordinator/public/cpp",
"//services/resource_coordinator/public/interfaces",
]
+
+ data_deps = [
+ ":manifest",
+ ]
+}
+
+service_manifest("manifest") {
+ name = "resource_coordinator"
+ source = "manifest.json"
}
source_set("tests") {

Powered by Google App Engine
This is Rietveld 408576698