| 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 12 matching lines...) Expand all Loading... |
| 23 link_target_type = "static_library" | 23 link_target_type = "static_library" |
| 24 } | 24 } |
| 25 target(link_target_type, "service_sources") { | 25 target(link_target_type, "service_sources") { |
| 26 # External code should depend on this via //gpu/command_buffer/service above | 26 # External code should depend on this via //gpu/command_buffer/service above |
| 27 # rather than depending on this directly or the component build will break. | 27 # rather than depending on this directly or the component build will break. |
| 28 visibility = [ "//gpu/*" ] | 28 visibility = [ "//gpu/*" ] |
| 29 | 29 |
| 30 sources = [ | 30 sources = [ |
| 31 "buffer_manager.cc", | 31 "buffer_manager.cc", |
| 32 "buffer_manager.h", | 32 "buffer_manager.h", |
| 33 "client_service_map.h", |
| 33 "cmd_buffer_engine.h", | 34 "cmd_buffer_engine.h", |
| 34 "cmd_parser.cc", | 35 "cmd_parser.cc", |
| 35 "cmd_parser.h", | 36 "cmd_parser.h", |
| 36 "command_buffer_service.cc", | 37 "command_buffer_service.cc", |
| 37 "command_buffer_service.h", | 38 "command_buffer_service.h", |
| 38 "command_executor.cc", | 39 "command_executor.cc", |
| 39 "command_executor.h", | 40 "command_executor.h", |
| 40 "common_decoder.cc", | 41 "common_decoder.cc", |
| 41 "common_decoder.h", | 42 "common_decoder.h", |
| 42 "context_group.cc", | 43 "context_group.cc", |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 configs -= [ "//build/config/compiler:default_optimization" ] | 188 configs -= [ "//build/config/compiler:default_optimization" ] |
| 188 configs += [ "//build/config/compiler:optimize_max" ] | 189 configs += [ "//build/config/compiler:optimize_max" ] |
| 189 } | 190 } |
| 190 } | 191 } |
| 191 | 192 |
| 192 proto_library("disk_cache_proto") { | 193 proto_library("disk_cache_proto") { |
| 193 sources = [ | 194 sources = [ |
| 194 "disk_cache_proto.proto", | 195 "disk_cache_proto.proto", |
| 195 ] | 196 ] |
| 196 } | 197 } |
| OLD | NEW |