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

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

Issue 1261353003: gpu: Add ANGLE commit to program cache hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix BUILD.gn Created 5 years, 4 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 | « no previous file | gpu/command_buffer/service/program_cache.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/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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 145
146 public_deps = [ 146 public_deps = [
147 "//gpu/command_buffer/common:common_sources", 147 "//gpu/command_buffer/common:common_sources",
148 ] 148 ]
149 deps = [ 149 deps = [
150 ":disk_cache_proto", 150 ":disk_cache_proto",
151 "//base", 151 "//base",
152 "//base/third_party/dynamic_annotations", 152 "//base/third_party/dynamic_annotations",
153 "//crypto", 153 "//crypto",
154 "//gpu/config:config_sources", 154 "//gpu/config:config_sources",
155 "//third_party/angle:commit_id",
155 "//third_party/angle:translator", 156 "//third_party/angle:translator",
156 "//third_party/protobuf:protobuf_lite", 157 "//third_party/protobuf:protobuf_lite",
157 "//third_party/re2", 158 "//third_party/re2",
158 "//third_party/smhasher:cityhash", 159 "//third_party/smhasher:cityhash",
159 "//ui/gfx", 160 "//ui/gfx",
160 "//ui/gfx/geometry", 161 "//ui/gfx/geometry",
161 "//ui/gl", 162 "//ui/gl",
162 ] 163 ]
163 164
164 if (is_win || is_android || (is_linux && use_x11)) { 165 if (is_win || is_android || (is_linux && use_x11)) {
(...skipping 16 matching lines...) Expand all
181 configs -= [ "//build/config/compiler:optimize" ] 182 configs -= [ "//build/config/compiler:optimize" ]
182 configs += [ "//build/config/compiler:optimize_max" ] 183 configs += [ "//build/config/compiler:optimize_max" ]
183 } 184 }
184 } 185 }
185 186
186 proto_library("disk_cache_proto") { 187 proto_library("disk_cache_proto") {
187 sources = [ 188 sources = [
188 "disk_cache_proto.proto", 189 "disk_cache_proto.proto",
189 ] 190 ]
190 } 191 }
OLDNEW
« no previous file with comments | « no previous file | gpu/command_buffer/service/program_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698