| 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 = [ |
| 11 "//gpu", | 11 "//gpu", |
| 12 ] | 12 ] |
| 13 } else { | 13 } else { |
| 14 public_deps = [ | 14 public_deps = [ |
| 15 ":service_sources", | 15 ":service_sources", |
| 16 ] | 16 ] |
| 17 } | 17 } |
| 18 } | 18 } |
| 19 | 19 |
| 20 source_set("service_sources") { | 20 source_set("service_sources") { |
| 21 visibility = [ | 21 # External code should depend on this via //gpu/command_buffer/service above |
| 22 "//gpu/*", | 22 # rather than depending on this directly or the component build will break. |
| 23 "//mojo/gles2:gles2", | 23 visibility = [ "//gpu/*" ] |
| 24 ] | |
| 25 | 24 |
| 26 sources = [ | 25 sources = [ |
| 27 "buffer_manager.cc", | 26 "buffer_manager.cc", |
| 28 "buffer_manager.h", | 27 "buffer_manager.h", |
| 29 "cmd_buffer_engine.h", | 28 "cmd_buffer_engine.h", |
| 30 "cmd_parser.cc", | 29 "cmd_parser.cc", |
| 31 "cmd_parser.h", | 30 "cmd_parser.h", |
| 32 "command_buffer_service.cc", | 31 "command_buffer_service.cc", |
| 33 "command_buffer_service.h", | 32 "command_buffer_service.h", |
| 34 "command_executor.cc", | 33 "command_executor.cc", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 configs -= [ "//build/config/compiler:default_optimization" ] | 170 configs -= [ "//build/config/compiler:default_optimization" ] |
| 172 configs += [ "//build/config/compiler:optimize_max" ] | 171 configs += [ "//build/config/compiler:optimize_max" ] |
| 173 } | 172 } |
| 174 } | 173 } |
| 175 | 174 |
| 176 proto_library("disk_cache_proto") { | 175 proto_library("disk_cache_proto") { |
| 177 sources = [ | 176 sources = [ |
| 178 "disk_cache_proto.proto", | 177 "disk_cache_proto.proto", |
| 179 ] | 178 ] |
| 180 } | 179 } |
| OLD | NEW |