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

Unified Diff: ui/gfx/ipc/BUILD.gn

Issue 1824993004: Separate gfx_ipc into skia-dependent and non-skia-dependent parts (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add includes associated with new skia-only ui/gfx/ipc target Created 4 years, 9 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
Index: ui/gfx/ipc/BUILD.gn
diff --git a/ui/gfx/ipc/BUILD.gn b/ui/gfx/ipc/BUILD.gn
index 28da16626353091131eeded269434d3a24a469f4..9b20dcf0d6f78f33ef55d6913efe2b148702f253 100644
--- a/ui/gfx/ipc/BUILD.gn
+++ b/ui/gfx/ipc/BUILD.gn
@@ -16,6 +16,25 @@ component("ipc") {
deps = [
"//base",
"//ipc",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ ]
+}
+
+component("skia_ipc") {
+ output_name = "gfx_skia_ipc"
+
+ sources = [
+ "gfx_skia_param_traits.cc",
+ "gfx_skia_param_traits.h",
+ ]
+
+ defines = [ "GFX_SKIA_IPC_IMPLEMENTATION" ]
+
+ deps = [
+ ":ipc",
+ "//base",
+ "//ipc",
"//skia",
"//ui/gfx",
"//ui/gfx/geometry",

Powered by Google App Engine
This is Rietveld 408576698