Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Side by Side Diff: gpu/command_buffer/common/BUILD.gn

Issue 2814843002: gpu: GPU service scheduler. (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 28 matching lines...) Expand all
39 "debug_marker_manager.h", 39 "debug_marker_manager.h",
40 "discardable_handle.cc", 40 "discardable_handle.cc",
41 "discardable_handle.h", 41 "discardable_handle.h",
42 "gles2_cmd_format.cc", 42 "gles2_cmd_format.cc",
43 "gles2_cmd_format.h", 43 "gles2_cmd_format.h",
44 "gles2_cmd_format_autogen.h", 44 "gles2_cmd_format_autogen.h",
45 "gles2_cmd_ids.h", 45 "gles2_cmd_ids.h",
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 "gpu_stream_constants.cc",
50 "gpu_stream_constants.h",
49 "id_allocator.cc", 51 "id_allocator.cc",
50 "id_allocator.h", 52 "id_allocator.h",
51 "id_type.h", 53 "id_type.h",
52 "mailbox.cc", 54 "mailbox.cc",
53 "mailbox.h", 55 "mailbox.h",
54 "mailbox_holder.cc", 56 "mailbox_holder.cc",
55 "mailbox_holder.h", 57 "mailbox_holder.h",
56 "sync_token.cc", 58 "sync_token.cc",
57 "sync_token.h", 59 "sync_token.h",
58 "texture_in_use_response.h", 60 "texture_in_use_response.h",
(...skipping 24 matching lines...) Expand all
83 85
84 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] 86 defines = [ "GLES2_UTILS_IMPLEMENTATION" ]
85 87
86 deps = [ 88 deps = [
87 "//base", 89 "//base",
88 "//ui/gfx/geometry", 90 "//ui/gfx/geometry",
89 ] 91 ]
90 92
91 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] 93 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
92 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698