| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 145 | 145 | 
| 146   public_deps = [ | 146   public_deps = [ | 
| 147     "//gpu/command_buffer/common:common_sources", | 147     "//gpu/command_buffer/common:common_sources", | 
| 148   ] | 148   ] | 
| 149   deps = [ | 149   deps = [ | 
| 150     ":disk_cache_proto", | 150     ":disk_cache_proto", | 
| 151     "//base", | 151     "//base", | 
| 152     "//base/third_party/dynamic_annotations", | 152     "//base/third_party/dynamic_annotations", | 
| 153     "//crypto", | 153     "//crypto", | 
| 154     "//gpu/config:config_sources", | 154     "//gpu/config:config_sources", | 
|  | 155     "//third_party/angle:commit_id", | 
| 155     "//third_party/angle:translator", | 156     "//third_party/angle:translator", | 
| 156     "//third_party/protobuf:protobuf_lite", | 157     "//third_party/protobuf:protobuf_lite", | 
| 157     "//third_party/re2", | 158     "//third_party/re2", | 
| 158     "//third_party/smhasher:cityhash", | 159     "//third_party/smhasher:cityhash", | 
| 159     "//ui/gfx", | 160     "//ui/gfx", | 
| 160     "//ui/gfx/geometry", | 161     "//ui/gfx/geometry", | 
| 161     "//ui/gl", | 162     "//ui/gl", | 
| 162   ] | 163   ] | 
| 163 | 164 | 
| 164   if (is_win || is_android || (is_linux && use_x11)) { | 165   if (is_win || is_android || (is_linux && use_x11)) { | 
| (...skipping 16 matching lines...) Expand all  Loading... | 
| 181     configs -= [ "//build/config/compiler:optimize" ] | 182     configs -= [ "//build/config/compiler:optimize" ] | 
| 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 | 
|---|