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

Unified Diff: gpu/ipc/common/BUILD.gn

Issue 1708783002: Mustash: move content::GPUVideoMemoryUsageStats to gpu::VideoMemoryUsageStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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
« no previous file with comments | « gpu/gpu_ipc_common.gypi ('k') | gpu/ipc/common/memory_stats.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/common/BUILD.gn
diff --git a/content/public/gpu/BUILD.gn b/gpu/ipc/common/BUILD.gn
similarity index 55%
copy from content/public/gpu/BUILD.gn
copy to gpu/ipc/common/BUILD.gn
index 8de310cab9a5e661a82a8c010e5a7f3538746ff7..d99f57779615ea4873c73b649276f6344d58ad04 100644
--- a/content/public/gpu/BUILD.gn
+++ b/gpu/ipc/common/BUILD.gn
@@ -2,29 +2,30 @@
# 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") {
+ visibility = [ "//gpu/*" ]
sources = [
- "content_gpu_client.h",
+ "memory_stats.cc",
+ "memory_stats.h",
]
+ configs += [ "//gpu:gpu_implementation" ]
+
deps = [
"//base",
- "//content:export",
- "//content/gpu:gpu_sources",
+ "//ipc",
]
}
« no previous file with comments | « gpu/gpu_ipc_common.gypi ('k') | gpu/ipc/common/memory_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698