| 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",
|
| ]
|
| }
|
|
|