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

Unified Diff: components/memory_coordinator/browser/BUILD.gn

Issue 2094583002: Add MemoryCoordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 4 years, 5 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: components/memory_coordinator/browser/BUILD.gn
diff --git a/components/memory_coordinator/common/BUILD.gn b/components/memory_coordinator/browser/BUILD.gn
similarity index 56%
copy from components/memory_coordinator/common/BUILD.gn
copy to components/memory_coordinator/browser/BUILD.gn
index 950b137bda542075983ebf5e7355b2bf0900529c..a3c220e737edf45b65d9798f9fffd4ad464e3535 100644
--- a/components/memory_coordinator/common/BUILD.gn
+++ b/components/memory_coordinator/browser/BUILD.gn
@@ -2,12 +2,19 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("common") {
+source_set("browser") {
sources = [
- "memory_coordinator_client.h",
+ "memory_coordinator_impl.cc",
+ "memory_coordinator_impl.h",
]
- public_deps = [
+ deps = [
+ "//base",
"//components/memory_coordinator/public/interfaces",
+ "//services/shell/public/cpp",
+ ]
+
+ public_deps = [
+ "//components/memory_coordinator/common",
]
}

Powered by Google App Engine
This is Rietveld 408576698