mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
39 lines
873 B
Plaintext
39 lines
873 B
Plaintext
# Copyright 2018 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")
|
|
|
|
source_set("host") {
|
|
public = [
|
|
"external_begin_frame_controller_client_impl.h",
|
|
]
|
|
sources = [
|
|
"external_begin_frame_controller_client_impl.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//mojo/public/cpp/bindings",
|
|
"//ui/compositor",
|
|
]
|
|
|
|
public_deps = [
|
|
"//services/viz/privileged/interfaces/compositing",
|
|
]
|
|
|
|
if (use_aura || is_mac) {
|
|
public += [ "host_context_factory_private.h" ]
|
|
sources += [ "host_context_factory_private.cc" ]
|
|
|
|
deps += [
|
|
"//cc/mojo_embedder",
|
|
"//components/viz/client",
|
|
"//components/viz/common",
|
|
"//components/viz/host",
|
|
"//ui/gfx",
|
|
]
|
|
|
|
public_deps += [ "//services/viz/public/interfaces" ]
|
|
}
|
|
}
|