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_common" just forwarding) and goes into a static library in | 6 # "command_buffer_common" just forwarding) and goes into a static library in |
7 # non-component build. This needs to match the GYP build which was likely an | 7 # non-component build. This needs to match the GYP build which was likely an |
8 # attempt to make larger components to help with loading. | 8 # attempt to make larger components to help with loading. |
9 | 9 |
10 group("common") { | 10 group("common") { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "gles2_cmd_ids_autogen.h", | 46 "gles2_cmd_ids_autogen.h", |
47 "gpu_memory_buffer_support.cc", | 47 "gpu_memory_buffer_support.cc", |
48 "gpu_memory_buffer_support.h", | 48 "gpu_memory_buffer_support.h", |
49 "id_allocator.cc", | 49 "id_allocator.cc", |
50 "id_allocator.h", | 50 "id_allocator.h", |
51 "id_type.h", | 51 "id_type.h", |
52 "mailbox.cc", | 52 "mailbox.cc", |
53 "mailbox.h", | 53 "mailbox.h", |
54 "mailbox_holder.cc", | 54 "mailbox_holder.cc", |
55 "mailbox_holder.h", | 55 "mailbox_holder.h", |
56 "scheduling_priority.cc", | |
57 "scheduling_priority.h", | |
58 "sync_token.cc", | 56 "sync_token.cc", |
59 "sync_token.h", | 57 "sync_token.h", |
60 "texture_in_use_response.h", | 58 "texture_in_use_response.h", |
61 "thread_local.h", | 59 "thread_local.h", |
62 "time.h", | 60 "time.h", |
63 ] | 61 ] |
64 | 62 |
65 configs += [ "//gpu:gpu_implementation" ] | 63 configs += [ "//gpu:gpu_implementation" ] |
66 | 64 |
67 public_deps = [ | 65 public_deps = [ |
(...skipping 17 matching lines...) Expand all Loading... |
85 | 83 |
86 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] | 84 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] |
87 | 85 |
88 deps = [ | 86 deps = [ |
89 "//base", | 87 "//base", |
90 "//ui/gfx/geometry", | 88 "//ui/gfx/geometry", |
91 ] | 89 ] |
92 | 90 |
93 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] | 91 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] |
94 } | 92 } |
OLD | NEW |