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

Unified Diff: cc/ipc/BUILD.gn

Issue 1978053002: Move cc ParamTraits to cc/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Ignore size_t warnings Created 4 years, 7 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 | « no previous file | cc/ipc/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/ipc/BUILD.gn
diff --git a/cc/ipc/BUILD.gn b/cc/ipc/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..97e2338ca8532769e5788e09f6b16d2c792ab288
--- /dev/null
+++ b/cc/ipc/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+component("ipc") {
+ output_name = "cc_ipc"
+
+ defines = [ "CC_IPC_IMPLEMENTATION" ]
+
+ sources = [
+ "cc_ipc_export.h",
+ "cc_param_traits.cc",
+ "cc_param_traits.h",
+ "cc_param_traits_macros.h",
+ ]
+
+ configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+
+ public_deps = [
+ "//cc",
+ "//cc/surfaces",
+ ]
+
+ deps = [
+ "//base",
+ "//gpu/ipc/common",
+ "//ipc",
+ "//skia",
+ "//ui/events/ipc",
+ "//ui/gfx",
+ "//ui/gfx/ipc",
+ "//ui/gfx/ipc/geometry",
+ "//ui/gfx/ipc/skia",
+ ]
+}
« no previous file with comments | « no previous file | cc/ipc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698