mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
39 lines
769 B
Plaintext
39 lines
769 B
Plaintext
# 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.
|
|
|
|
import("//build/config/ui.gni")
|
|
import("//cc/cc.gni")
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
cc_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",
|
|
"//components/viz/common",
|
|
"//skia",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//gpu/ipc/common",
|
|
"//ipc",
|
|
"//ui/gfx",
|
|
"//ui/gfx/ipc",
|
|
"//ui/gfx/ipc/color",
|
|
"//ui/gfx/ipc/geometry",
|
|
"//ui/gfx/ipc/skia",
|
|
"//ui/latency/ipc",
|
|
]
|
|
}
|