| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 ] | 159 ] |
| 160 deps = [ | 160 deps = [ |
| 161 ":disk_cache_proto", | 161 ":disk_cache_proto", |
| 162 "//base", | 162 "//base", |
| 163 "//base/third_party/dynamic_annotations", | 163 "//base/third_party/dynamic_annotations", |
| 164 "//crypto", | 164 "//crypto", |
| 165 "//gpu/command_buffer/client:client_sources", | 165 "//gpu/command_buffer/client:client_sources", |
| 166 "//gpu/command_buffer/common:gles2_utils", | 166 "//gpu/command_buffer/common:gles2_utils", |
| 167 "//gpu/config:config_sources", | 167 "//gpu/config:config_sources", |
| 168 "//gpu/ipc/common:surface_handle_type", | 168 "//gpu/ipc/common:surface_handle_type", |
| 169 "//media:media_features", |
| 169 "//third_party/angle:angle_image_util", | 170 "//third_party/angle:angle_image_util", |
| 170 "//third_party/angle:commit_id", | 171 "//third_party/angle:commit_id", |
| 171 "//third_party/angle:translator", | 172 "//third_party/angle:translator", |
| 172 "//third_party/protobuf:protobuf_lite", | 173 "//third_party/protobuf:protobuf_lite", |
| 173 "//third_party/re2", | 174 "//third_party/re2", |
| 174 "//third_party/smhasher:cityhash", | 175 "//third_party/smhasher:cityhash", |
| 175 "//ui/gfx", | 176 "//ui/gfx", |
| 176 "//ui/gfx/geometry", | 177 "//ui/gfx/geometry", |
| 177 "//ui/gl", | 178 "//ui/gl", |
| 178 "//ui/gl/init", | 179 "//ui/gl/init", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 191 configs -= [ "//build/config/compiler:default_optimization" ] | 192 configs -= [ "//build/config/compiler:default_optimization" ] |
| 192 configs += [ "//build/config/compiler:optimize_max" ] | 193 configs += [ "//build/config/compiler:optimize_max" ] |
| 193 } | 194 } |
| 194 } | 195 } |
| 195 | 196 |
| 196 proto_library("disk_cache_proto") { | 197 proto_library("disk_cache_proto") { |
| 197 sources = [ | 198 sources = [ |
| 198 "disk_cache_proto.proto", | 199 "disk_cache_proto.proto", |
| 199 ] | 200 ] |
| 200 } | 201 } |
| OLD | NEW |