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