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

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

Issue 1920163005: Split //ui/gl into //ui/gl + //ui/gi/init. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 7 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
« no previous file with comments | « gpu/command_buffer_service.gypi ('k') | gpu/config/gpu_info_collector.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 declare_args() { 9 declare_args() {
10 # Use the PCI lib to collect GPU information on Linux. 10 # Use the PCI lib to collect GPU information on Linux.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 configs += [ 70 configs += [
71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 71 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
72 "//build/config/compiler:no_size_t_to_int_warning", 72 "//build/config/compiler:no_size_t_to_int_warning",
73 "//gpu:gpu_implementation", 73 "//gpu:gpu_implementation",
74 ] 74 ]
75 75
76 deps = [ 76 deps = [
77 "//base", 77 "//base",
78 "//third_party/re2", 78 "//third_party/re2",
79 "//ui/gl", 79 "//ui/gl",
80 "//ui/gl/init",
80 ] 81 ]
81 82
82 # Prefer mesa GL headers to system headers, which cause problems on Win. 83 # Prefer mesa GL headers to system headers, which cause problems on Win.
83 include_dirs = [ "//third_party/mesa/src/include" ] 84 include_dirs = [ "//third_party/mesa/src/include" ]
84 85
85 if (is_win) { 86 if (is_win) {
86 deps += [ "//third_party/libxml" ] 87 deps += [ "//third_party/libxml" ]
87 libs = [ 88 libs = [
88 "dxguid.lib", 89 "dxguid.lib",
89 "setupapi.lib", 90 "setupapi.lib",
(...skipping 25 matching lines...) Expand all
115 "//third_party/libXNVCtrl", 116 "//third_party/libXNVCtrl",
116 "//ui/gfx/x", 117 "//ui/gfx/x",
117 ] 118 ]
118 } else { 119 } else {
119 sources -= [ "gpu_info_collector_x11.cc" ] 120 sources -= [ "gpu_info_collector_x11.cc" ]
120 } 121 }
121 if (!use_ozone) { 122 if (!use_ozone) {
122 sources -= [ "gpu_info_collector_ozone.cc" ] 123 sources -= [ "gpu_info_collector_ozone.cc" ]
123 } 124 }
124 } 125 }
OLDNEW
« no previous file with comments | « gpu/command_buffer_service.gypi ('k') | gpu/config/gpu_info_collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698