| OLD | NEW | 
|---|
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # The files here go into the "gpu" component in a component build (with | 5 # The files here go into the "gpu" component in a component build (with | 
| 6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into | 6 # "command_buffer_client" and "gles2_cmd_helper" just forwarding) and goes into | 
| 7 # separate static libraries in non-component build. This needs to match the | 7 # separate static libraries in non-component build. This needs to match the | 
| 8 # GYP build which was likely an attempt to make larger components to help with | 8 # GYP build which was likely an attempt to make larger components to help with | 
| 9 # loading. | 9 # loading. | 
| 10 group("client") { | 10 group("client") { | 
| (...skipping 30 matching lines...) Expand all  Loading... | 
| 41     "cmd_buffer_helper.h", | 41     "cmd_buffer_helper.h", | 
| 42     "fenced_allocator.cc", | 42     "fenced_allocator.cc", | 
| 43     "fenced_allocator.h", | 43     "fenced_allocator.h", | 
| 44     "gpu_control.h", | 44     "gpu_control.h", | 
| 45     "gpu_memory_buffer_manager.cc", | 45     "gpu_memory_buffer_manager.cc", | 
| 46     "gpu_memory_buffer_manager.h", | 46     "gpu_memory_buffer_manager.h", | 
| 47     "mapped_memory.cc", | 47     "mapped_memory.cc", | 
| 48     "mapped_memory.h", | 48     "mapped_memory.h", | 
| 49     "ring_buffer.cc", | 49     "ring_buffer.cc", | 
| 50     "ring_buffer.h", | 50     "ring_buffer.h", | 
|  | 51     "scoped_visibility_impl.cc", | 
|  | 52     "scoped_visibility_impl.h", | 
| 51     "transfer_buffer.cc", | 53     "transfer_buffer.cc", | 
| 52     "transfer_buffer.h", | 54     "transfer_buffer.h", | 
| 53   ] | 55   ] | 
| 54 | 56 | 
| 55   configs += [ | 57   configs += [ | 
| 56     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 58     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 
| 57     "//build/config/compiler:no_size_t_to_int_warning", | 59     "//build/config/compiler:no_size_t_to_int_warning", | 
| 58     "//gpu:gpu_implementation", | 60     "//gpu:gpu_implementation", | 
| 59   ] | 61   ] | 
| 60 | 62 | 
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 234   ] | 236   ] | 
| 235   deps = [ | 237   deps = [ | 
| 236     ":client", | 238     ":client", | 
| 237     ":gles2_implementation_no_check", | 239     ":gles2_implementation_no_check", | 
| 238     ":gles2_interface", | 240     ":gles2_interface", | 
| 239     "//base", | 241     "//base", | 
| 240     "//base/third_party/dynamic_annotations", | 242     "//base/third_party/dynamic_annotations", | 
| 241     "//gpu/command_buffer/common", | 243     "//gpu/command_buffer/common", | 
| 242   ] | 244   ] | 
| 243 } | 245 } | 
| OLD | NEW | 
|---|