| 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 source_set("service") { | 8 source_set("service") { |
| 9 sources = [ | 9 sources = [ |
| 10 "async_pixel_transfer_delegate.cc", | 10 "async_pixel_transfer_delegate.cc", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 configs += [ | 120 configs += [ |
| 121 "//gpu:gpu_implementation", | 121 "//gpu:gpu_implementation", |
| 122 "//third_party/khronos:khronos_headers", | 122 "//third_party/khronos:khronos_headers", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 # Prefer mesa GL headers to system headers, which cause problems on Win. | 125 # Prefer mesa GL headers to system headers, which cause problems on Win. |
| 126 include_dirs = [ "//third_party/mesa/src/include" ] | 126 include_dirs = [ "//third_party/mesa/src/include" ] |
| 127 | 127 |
| 128 public_deps = [ | 128 public_deps = [ |
| 129 "//gpu/command_buffer/common", | 129 "//gpu/command_buffer/common", |
| 130 "//gpu/command_buffer/common:gles2_utils", |
| 130 ] | 131 ] |
| 131 deps = [ | 132 deps = [ |
| 132 ":disk_cache_proto", | 133 ":disk_cache_proto", |
| 133 "//base", | 134 "//base", |
| 134 "//base/third_party/dynamic_annotations", | 135 "//base/third_party/dynamic_annotations", |
| 135 "//crypto", | 136 "//crypto", |
| 137 "//gpu/command_buffer/client", |
| 138 "//gpu/command_buffer/client:gpu_memory_buffer_manager", |
| 136 "//gpu/config", | 139 "//gpu/config", |
| 137 "//third_party/angle:translator", | 140 "//third_party/angle:translator", |
| 138 "//third_party/protobuf:protobuf_lite", | 141 "//third_party/protobuf:protobuf_lite", |
| 139 "//third_party/re2", | 142 "//third_party/re2", |
| 140 "//third_party/smhasher:cityhash", | 143 "//third_party/smhasher:cityhash", |
| 141 "//ui/gfx", | 144 "//ui/gfx", |
| 142 "//ui/gfx/geometry", | 145 "//ui/gfx/geometry", |
| 143 "//ui/gl", | 146 "//ui/gl", |
| 144 ] | 147 ] |
| 145 | 148 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 166 configs -= [ "//build/config/compiler:optimize" ] | 169 configs -= [ "//build/config/compiler:optimize" ] |
| 167 configs += [ "//build/config/compiler:optimize_max" ] | 170 configs += [ "//build/config/compiler:optimize_max" ] |
| 168 } | 171 } |
| 169 } | 172 } |
| 170 | 173 |
| 171 proto_library("disk_cache_proto") { | 174 proto_library("disk_cache_proto") { |
| 172 sources = [ | 175 sources = [ |
| 173 "disk_cache_proto.proto", | 176 "disk_cache_proto.proto", |
| 174 ] | 177 ] |
| 175 } | 178 } |
| OLD | NEW |