| 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 "//base/third_party/dynamic_annotations", | 151 "//base/third_party/dynamic_annotations", |
| 152 "//crypto", | 152 "//crypto", |
| 153 "//gpu/command_buffer/client:client_sources", | 153 "//gpu/command_buffer/client:client_sources", |
| 154 "//gpu/command_buffer/common:gles2_utils", | 154 "//gpu/command_buffer/common:gles2_utils", |
| 155 "//gpu/config:config_sources", | 155 "//gpu/config:config_sources", |
| 156 "//third_party/angle:commit_id", | 156 "//third_party/angle:commit_id", |
| 157 "//third_party/angle:translator", | 157 "//third_party/angle:translator", |
| 158 "//third_party/protobuf:protobuf_lite", | 158 "//third_party/protobuf:protobuf_lite", |
| 159 "//third_party/re2", | 159 "//third_party/re2", |
| 160 "//third_party/smhasher:cityhash", | 160 "//third_party/smhasher:cityhash", |
| 161 "//ui/accelerated_widget_mac:accelerated_widget_mac", |
| 161 "//ui/gfx", | 162 "//ui/gfx", |
| 162 "//ui/gfx/geometry", | 163 "//ui/gfx/geometry", |
| 163 "//ui/gl", | 164 "//ui/gl", |
| 164 "//ui/gl/init", | 165 "//ui/gl/init", |
| 165 ] | 166 ] |
| 166 | 167 |
| 167 if (is_mac) { | 168 if (is_mac) { |
| 168 # Required by gles2_cmd_decoder.cc on Mac. | 169 # Required by gles2_cmd_decoder.cc on Mac. |
| 169 libs = [ | 170 libs = [ |
| 170 "IOSurface.framework", | 171 "IOSurface.framework", |
| 171 "OpenGL.framework", | 172 "OpenGL.framework", |
| 172 ] | 173 ] |
| 173 } | 174 } |
| 174 | 175 |
| 175 if (is_android && !is_debug) { | 176 if (is_android && !is_debug) { |
| 176 # On Android optimize more since this component can be a bottleneck. | 177 # On Android optimize more since this component can be a bottleneck. |
| 177 configs -= [ "//build/config/compiler:default_optimization" ] | 178 configs -= [ "//build/config/compiler:default_optimization" ] |
| 178 configs += [ "//build/config/compiler:optimize_max" ] | 179 configs += [ "//build/config/compiler:optimize_max" ] |
| 179 } | 180 } |
| 180 } | 181 } |
| 181 | 182 |
| 182 proto_library("disk_cache_proto") { | 183 proto_library("disk_cache_proto") { |
| 183 sources = [ | 184 sources = [ |
| 184 "disk_cache_proto.proto", | 185 "disk_cache_proto.proto", |
| 185 ] | 186 ] |
| 186 } | 187 } |
| OLD | NEW |