| Index: gpu/ipc/common/BUILD.gn
|
| diff --git a/content/public/gpu/BUILD.gn b/gpu/ipc/common/BUILD.gn
|
| similarity index 53%
|
| copy from content/public/gpu/BUILD.gn
|
| copy to gpu/ipc/common/BUILD.gn
|
| index 8de310cab9a5e661a82a8c010e5a7f3538746ff7..b77a9f9f6b28df173899a180d2cb45d82fa23521 100644
|
| --- a/content/public/gpu/BUILD.gn
|
| +++ b/gpu/ipc/common/BUILD.gn
|
| @@ -2,29 +2,27 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -# See //content/BUILD.gn for how this works.
|
| -group("gpu") {
|
| +group("ipc") {
|
| if (is_component_build) {
|
| public_deps = [
|
| - "//content",
|
| + "//gpu",
|
| ]
|
| } else {
|
| public_deps = [
|
| - ":gpu_sources",
|
| + ":ipc_common_sources",
|
| ]
|
| }
|
| }
|
|
|
| -source_set("gpu_sources") {
|
| - visibility = [ "//content/*" ]
|
| -
|
| +source_set("ipc_common_sources") {
|
| sources = [
|
| - "content_gpu_client.h",
|
| + "memory_stats.cc",
|
| + "memory_stats.h",
|
| ]
|
|
|
| + configs += [ "//gpu:gpu_implementation" ]
|
| +
|
| deps = [
|
| - "//base",
|
| - "//content:export",
|
| - "//content/gpu:gpu_sources",
|
| + "//ipc",
|
| ]
|
| }
|
|
|