| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 | 129 |
| 130 configs += [ | 130 configs += [ |
| 131 "//build/config:precompiled_headers", | 131 "//build/config:precompiled_headers", |
| 132 "//gpu:gpu_implementation", | 132 "//gpu:gpu_implementation", |
| 133 "//third_party/khronos:khronos_headers", | 133 "//third_party/khronos:khronos_headers", |
| 134 ] | 134 ] |
| 135 | 135 |
| 136 # Prefer mesa GL headers to system headers, which cause problems on Win. | 136 # Prefer mesa GL headers to system headers, which cause problems on Win. |
| 137 include_dirs = [ "//third_party/mesa/src/include" ] | 137 include_dirs = [ "//third_party/mesa/src/include" ] |
| 138 | 138 |
| 139 public_deps = [ | |
| 140 "//gpu/command_buffer/common:common_sources", | |
| 141 ] | |
| 142 deps = [ | 139 deps = [ |
| 143 ":disk_cache_proto", | 140 ":disk_cache_proto", |
| 144 "//base", | 141 "//base", |
| 145 "//base/third_party/dynamic_annotations", | 142 "//base/third_party/dynamic_annotations", |
| 146 "//crypto", | 143 "//crypto", |
| 147 "//gpu/command_buffer/client:client_sources", | 144 "//gpu/command_buffer/client:client_sources", |
| 145 "//gpu/command_buffer/common:common_sources", |
| 148 "//gpu/command_buffer/common:gles2_utils", | 146 "//gpu/command_buffer/common:gles2_utils", |
| 149 "//gpu/config:config_sources", | 147 "//gpu/config:config_sources", |
| 150 "//third_party/angle:commit_id", | 148 "//third_party/angle:commit_id", |
| 151 "//third_party/angle:translator", | 149 "//third_party/angle:translator", |
| 152 "//third_party/protobuf:protobuf_lite", | 150 "//third_party/protobuf:protobuf_lite", |
| 153 "//third_party/re2", | 151 "//third_party/re2", |
| 154 "//third_party/smhasher:cityhash", | 152 "//third_party/smhasher:cityhash", |
| 155 "//ui/gfx", | 153 "//ui/gfx", |
| 156 "//ui/gfx/geometry", | 154 "//ui/gfx/geometry", |
| 157 "//ui/gl", | 155 "//ui/gl", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 170 configs -= [ "//build/config/compiler:default_optimization" ] | 168 configs -= [ "//build/config/compiler:default_optimization" ] |
| 171 configs += [ "//build/config/compiler:optimize_max" ] | 169 configs += [ "//build/config/compiler:optimize_max" ] |
| 172 } | 170 } |
| 173 } | 171 } |
| 174 | 172 |
| 175 proto_library("disk_cache_proto") { | 173 proto_library("disk_cache_proto") { |
| 176 sources = [ | 174 sources = [ |
| 177 "disk_cache_proto.proto", | 175 "disk_cache_proto.proto", |
| 178 ] | 176 ] |
| 179 } | 177 } |
| OLD | NEW |