forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
37 lines (33 loc) · 1.05 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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/chromeos/ui_mode.gni")
import("//media/media_options.gni")
import("//third_party/widevine/cdm/widevine.gni")
static_library("gpu") {
deps = [
"//build:chromeos_buildflags",
"//chrome/common/profiler",
"//components/metrics:child_call_stack_profile_builder",
"//content/public/child",
"//content/public/common",
"//content/public/gpu",
"//third_party/widevine/cdm:buildflags",
]
sources = [
"browser_exposed_gpu_interfaces.cc",
"browser_exposed_gpu_interfaces.h",
"chrome_content_gpu_client.cc",
"chrome_content_gpu_client.h",
]
if (is_chromeos_ash) {
deps += [
"//chromeos/components/cdm_factory_daemon:cdm_factory_daemon_gpu",
"//components/arc/mojom:media",
"//components/arc/video_accelerator",
"//gpu/command_buffer/service",
"//services/service_manager/public/cpp",
"//ui/ozone",
]
}
}