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

Side by Side Diff: gpu/command_buffer/service/BUILD.gn

Issue 1109473004: gpu: Fix some problems reported by 'gn check'. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/client/BUILD.gn ('k') | no next file » | 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/protobuf/proto_library.gni") 6 import("//third_party/protobuf/proto_library.gni")
7 7
8 group("service") { 8 group("service") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 include_dirs = [ "//third_party/mesa/src/include" ] 142 include_dirs = [ "//third_party/mesa/src/include" ]
143 143
144 public_deps = [ 144 public_deps = [
145 "//gpu/command_buffer/common:common_sources", 145 "//gpu/command_buffer/common:common_sources",
146 ] 146 ]
147 deps = [ 147 deps = [
148 ":disk_cache_proto", 148 ":disk_cache_proto",
149 "//base", 149 "//base",
150 "//base/third_party/dynamic_annotations", 150 "//base/third_party/dynamic_annotations",
151 "//crypto", 151 "//crypto",
152 "//gpu/command_buffer/client:client_sources",
no sievers 2015/04/27 19:30:46 wait, service_sources shouldn't depend on client_s
tfarina 2015/04/27 19:33:56 Because gpu/command_buffer/service is including fr
153 "//gpu/command_buffer/common:gles2_utils",
152 "//third_party/angle:translator", 154 "//third_party/angle:translator",
153 "//third_party/protobuf:protobuf_lite", 155 "//third_party/protobuf:protobuf_lite",
154 "//third_party/re2", 156 "//third_party/re2",
155 "//third_party/smhasher:cityhash", 157 "//third_party/smhasher:cityhash",
156 "//ui/gfx", 158 "//ui/gfx",
157 "//ui/gfx/geometry", 159 "//ui/gfx/geometry",
158 "//ui/gl", 160 "//ui/gl",
159 ] 161 ]
160 162
161 if (is_win || is_android || (is_linux && use_x11)) { 163 if (is_win || is_android || (is_linux && use_x11)) {
(...skipping 16 matching lines...) Expand all
178 configs -= [ "//build/config/compiler:optimize" ] 180 configs -= [ "//build/config/compiler:optimize" ]
179 configs += [ "//build/config/compiler:optimize_max" ] 181 configs += [ "//build/config/compiler:optimize_max" ]
180 } 182 }
181 } 183 }
182 184
183 proto_library("disk_cache_proto") { 185 proto_library("disk_cache_proto") {
184 sources = [ 186 sources = [
185 "disk_cache_proto.proto", 187 "disk_cache_proto.proto",
186 ] 188 ]
187 } 189 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698