OLD | NEW |
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "transfer_buffer_manager.h", | 128 "transfer_buffer_manager.h", |
129 "valuebuffer_manager.cc", | 129 "valuebuffer_manager.cc", |
130 "valuebuffer_manager.h", | 130 "valuebuffer_manager.h", |
131 "vertex_array_manager.cc", | 131 "vertex_array_manager.cc", |
132 "vertex_array_manager.h", | 132 "vertex_array_manager.h", |
133 "vertex_attrib_manager.cc", | 133 "vertex_attrib_manager.cc", |
134 "vertex_attrib_manager.h", | 134 "vertex_attrib_manager.h", |
135 ] | 135 ] |
136 | 136 |
137 configs += [ | 137 configs += [ |
| 138 "//build/config:precompiled_headers", |
138 "//gpu:gpu_implementation", | 139 "//gpu:gpu_implementation", |
139 "//third_party/khronos:khronos_headers", | 140 "//third_party/khronos:khronos_headers", |
140 ] | 141 ] |
141 | 142 |
142 # Prefer mesa GL headers to system headers, which cause problems on Win. | 143 # Prefer mesa GL headers to system headers, which cause problems on Win. |
143 include_dirs = [ "//third_party/mesa/src/include" ] | 144 include_dirs = [ "//third_party/mesa/src/include" ] |
144 | 145 |
145 public_deps = [ | 146 public_deps = [ |
146 "//gpu/command_buffer/common:common_sources", | 147 "//gpu/command_buffer/common:common_sources", |
147 ] | 148 ] |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 configs -= [ "//build/config/compiler:optimize" ] | 181 configs -= [ "//build/config/compiler:optimize" ] |
181 configs += [ "//build/config/compiler:optimize_max" ] | 182 configs += [ "//build/config/compiler:optimize_max" ] |
182 } | 183 } |
183 } | 184 } |
184 | 185 |
185 proto_library("disk_cache_proto") { | 186 proto_library("disk_cache_proto") { |
186 sources = [ | 187 sources = [ |
187 "disk_cache_proto.proto", | 188 "disk_cache_proto.proto", |
188 ] | 189 ] |
189 } | 190 } |
OLD | NEW |