| Index: cc/ipc/BUILD.gn
|
| diff --git a/cc/ipc/BUILD.gn b/cc/ipc/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6f43d8cef88145b7f6563fcc01f2635d918bc040
|
| --- /dev/null
|
| +++ b/cc/ipc/BUILD.gn
|
| @@ -0,0 +1,32 @@
|
| +# 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",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//cc",
|
| + ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//gpu/ipc/common",
|
| + "//ipc",
|
| + "//skia",
|
| + "//ui/events/ipc",
|
| + "//ui/gfx",
|
| + "//ui/gfx/ipc",
|
| + "//ui/gfx/ipc/geometry",
|
| + "//ui/gfx/ipc/skia",
|
| + ]
|
| +}
|
|
|