Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: services/ui/public/cpp/gpu/BUILD.gn

Issue 2511143004: mus: Split the gpu client-lib into a separate component. (Closed)
Patch Set: . Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6
7 source_set("gpu") {
8 sources = [
9 "gpu_service.h",
10 ]
11
12 deps = [
13 ":internal",
14 "//gpu/ipc/client",
15 "//services/ui/public/interfaces",
16 ]
17
18 allow_circular_includes_from = [ ":internal" ]
19 }
20
21 source_set("internal") {
22 visibility = [
23 ":gpu",
24 "//services/ui/demo:lib",
25 ]
26
27 sources = [
28 "gpu_service.cc",
29 "mojo_gpu_memory_buffer_manager.cc",
30 "mojo_gpu_memory_buffer_manager.h",
31 ]
32
33 deps = [
34 "//base",
35 "//gpu/command_buffer/client",
36 "//gpu/ipc/client",
37 "//mojo/public/cpp/system",
38 "//services/service_manager/public/cpp",
39 "//services/ui/common:mus_common",
40 "//services/ui/public/interfaces",
41 ]
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698