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

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

Issue 2709163004: Rename GpuMemoryBufferFactoryOzoneNativePixmap to GpuMemoryBufferFactoryNativePixmap (Closed)
Patch Set: Rebase and addressed reveman's remark. Created 3 years, 8 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/ipc/common/gpu_memory_buffer_support.cc ('k') | gpu/ipc/service/gpu_memory_buffer_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/BUILD.gn
diff --git a/gpu/ipc/service/BUILD.gn b/gpu/ipc/service/BUILD.gn
index b0e1540ea53444f489a6c661f7138121490571e2..abec3f8b454ed9a31381f8e342b8c532075108a6 100644
--- a/gpu/ipc/service/BUILD.gn
+++ b/gpu/ipc/service/BUILD.gn
@@ -112,16 +112,16 @@ target(link_target_type, "ipc_service_sources") {
libs += [ "android" ]
}
if (is_linux) {
- sources += [ "image_transport_surface_linux.cc" ]
+ sources += [
+ "gpu_memory_buffer_factory_native_pixmap.cc",
+ "gpu_memory_buffer_factory_native_pixmap.h",
+ "image_transport_surface_linux.cc",
+ ]
}
if (use_x11) {
sources += [ "x_util.h" ]
}
if (use_ozone) {
- sources += [
- "gpu_memory_buffer_factory_ozone_native_pixmap.cc",
- "gpu_memory_buffer_factory_ozone_native_pixmap.h",
- ]
deps += [ "//ui/ozone" ]
}
}
@@ -177,8 +177,10 @@ test("gpu_ipc_service_unittests") {
if (is_mac) {
sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ]
}
+ if (is_linux) {
+ sources += [ "gpu_memory_buffer_factory_native_pixmap_unittest.cc" ]
+ }
if (use_ozone) {
- sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ]
deps += [ "//ui/ozone" ]
}
}
« no previous file with comments | « gpu/ipc/common/gpu_memory_buffer_support.cc ('k') | gpu/ipc/service/gpu_memory_buffer_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698