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

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

Issue 1726303002: Added initial Vulkan build files as well as a basic implementation file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed hack to bypass loader Created 4 years, 9 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ] 70 ]
71 } 71 }
72 72
73 if (is_chromeos && current_cpu != "arm") { 73 if (is_chromeos && current_cpu != "arm") {
74 configs += [ "//third_party/libva:libva_config" ] 74 configs += [ "//third_party/libva:libva_config" ]
75 } 75 }
76 76
77 if (use_x11) { 77 if (use_x11) {
78 deps += [ "//ui/events/platform/x11" ] 78 deps += [ "//ui/events/platform/x11" ]
79 } 79 }
80
81 if (enable_vulkan) {
82 deps += [ "//gpu/vulkan" ]
83 }
80 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698