| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "//gpu/command_buffer/common:common_sources", | 150 "//gpu/command_buffer/common:common_sources", |
| 151 ] | 151 ] |
| 152 deps = [ | 152 deps = [ |
| 153 ":disk_cache_proto", | 153 ":disk_cache_proto", |
| 154 "//base", | 154 "//base", |
| 155 "//base/third_party/dynamic_annotations", | 155 "//base/third_party/dynamic_annotations", |
| 156 "//crypto", | 156 "//crypto", |
| 157 "//gpu/command_buffer/client:client_sources", | 157 "//gpu/command_buffer/client:client_sources", |
| 158 "//gpu/command_buffer/common:gles2_utils", | 158 "//gpu/command_buffer/common:gles2_utils", |
| 159 "//gpu/config:config_sources", | 159 "//gpu/config:config_sources", |
| 160 "//third_party/angle:angle_image_util", |
| 160 "//third_party/angle:commit_id", | 161 "//third_party/angle:commit_id", |
| 161 "//third_party/angle:translator", | 162 "//third_party/angle:translator", |
| 162 "//third_party/protobuf:protobuf_lite", | 163 "//third_party/protobuf:protobuf_lite", |
| 163 "//third_party/re2", | 164 "//third_party/re2", |
| 164 "//third_party/smhasher:cityhash", | 165 "//third_party/smhasher:cityhash", |
| 165 "//ui/gfx", | 166 "//ui/gfx", |
| 166 "//ui/gfx/geometry", | 167 "//ui/gfx/geometry", |
| 167 "//ui/gl", | 168 "//ui/gl", |
| 168 "//ui/gl/init", | 169 "//ui/gl/init", |
| 169 ] | 170 ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 181 configs -= [ "//build/config/compiler:default_optimization" ] | 182 configs -= [ "//build/config/compiler:default_optimization" ] |
| 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 } |
| OLD | NEW |