| 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 62%
|
| copy from components/memory_coordinator/common/BUILD.gn
|
| copy to components/memory_coordinator/browser/BUILD.gn
|
| index 950b137bda542075983ebf5e7355b2bf0900529c..ac0869ac530639acc20e0f152d65ad3f6ffdffd0 100644
|
| --- a/components/memory_coordinator/common/BUILD.gn
|
| +++ b/components/memory_coordinator/browser/BUILD.gn
|
| @@ -2,12 +2,18 @@
|
| # 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.cc",
|
| + "memory_coordinator.h",
|
| ]
|
|
|
| - public_deps = [
|
| + deps = [
|
| + "//base",
|
| "//components/memory_coordinator/public/interfaces",
|
| ]
|
| +
|
| + public_deps = [
|
| + "//components/memory_coordinator/common",
|
| + ]
|
| }
|
|
|