naiveproxy/services/ws/public/cpp/gpu/BUILD.gn
2018-12-09 21:59:24 -05:00

47 lines
1.1 KiB
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")
source_set("gpu") {
public = [
"command_buffer_metrics.h",
"context_provider_command_buffer.h",
"gpu.h",
]
sources = [
"client_gpu_memory_buffer_manager.cc",
"client_gpu_memory_buffer_manager.h",
"command_buffer_metrics.cc",
"context_provider_command_buffer.cc",
"gpu.cc",
]
public_deps = [
"//cc",
"//gpu/command_buffer/common",
"//gpu/ipc/client",
"//gpu/ipc/common",
"//services/ws/public/mojom",
"//url",
]
deps = [
"//base",
"//gpu",
"//gpu/command_buffer/client",
"//gpu/command_buffer/client:gles2_cmd_helper",
"//gpu/command_buffer/client:gles2_implementation",
"//gpu/command_buffer/client:raster",
"//gpu/command_buffer/client:webgpu",
"//gpu/command_buffer/common:raster",
"//gpu/skia_bindings",
"//mojo/public/cpp/system",
"//services/service_manager/public/cpp",
"//services/ws/public/mojom",
"//ui/gl",
]
}