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

Side by Side Diff: content/gpu/BUILD.gn

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn libs defs Created 4 years, 8 months 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//content/content.gni") 6 import("//content/content.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 8
9 # See //content/BUILD.gn for how this works. 9 # See //content/BUILD.gn for how this works.
10 group("gpu") { 10 group("gpu") {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 deps = [ 45 deps = [
46 "//base", 46 "//base",
47 "//base/third_party/dynamic_annotations", 47 "//base/third_party/dynamic_annotations",
48 "//components/tracing", 48 "//components/tracing",
49 "//content:export", 49 "//content:export",
50 "//content/common", 50 "//content/common",
51 "//content/public/child:child_sources", 51 "//content/public/child:child_sources",
52 "//content/public/common:common_sources", 52 "//content/public/common:common_sources",
53 "//gpu:gpu", 53 "//gpu:gpu",
54 "//gpu/ipc/common:command_buffer_traits", 54 "//gpu/ipc/common:command_buffer_traits",
55 "//gpu/ipc/service",
55 "//ipc", 56 "//ipc",
56 "//media/mojo/services:application_factory", 57 "//media/mojo/services:application_factory",
57 "//mojo/shell/public/interfaces", 58 "//mojo/shell/public/interfaces",
58 "//skia", 59 "//skia",
59 "//ui/events/ipc", 60 "//ui/events/ipc",
60 "//ui/gfx/ipc", 61 "//ui/gfx/ipc",
61 "//ui/gl", 62 "//ui/gl",
62 ] 63 ]
63 64
64 if (mojo_media_host == "gpu") { 65 if (mojo_media_host == "gpu") {
(...skipping 22 matching lines...) Expand all
87 } 88 }
88 89
89 if (use_ozone) { 90 if (use_ozone) {
90 deps += [ "//ui/ozone" ] 91 deps += [ "//ui/ozone" ]
91 } 92 }
92 93
93 if (enable_vulkan) { 94 if (enable_vulkan) {
94 deps += [ "//gpu/vulkan" ] 95 deps += [ "//gpu/vulkan" ]
95 } 96 }
96 } 97 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698