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

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

Issue 1394543003: Added SyncToken command buffer trait to help with IPC messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 group("common") { 9 group("common") {
10 if (is_component_build) { 10 if (is_component_build) {
(...skipping 26 matching lines...) Expand all
37 "gles2_cmd_format.h", 37 "gles2_cmd_format.h",
38 "gles2_cmd_format_autogen.h", 38 "gles2_cmd_format_autogen.h",
39 "gles2_cmd_ids.h", 39 "gles2_cmd_ids.h",
40 "gles2_cmd_ids_autogen.h", 40 "gles2_cmd_ids_autogen.h",
41 "id_allocator.cc", 41 "id_allocator.cc",
42 "id_allocator.h", 42 "id_allocator.h",
43 "mailbox.cc", 43 "mailbox.cc",
44 "mailbox.h", 44 "mailbox.h",
45 "mailbox_holder.cc", 45 "mailbox_holder.cc",
46 "mailbox_holder.h", 46 "mailbox_holder.h",
47 "sync_token.cc",
48 "sync_token.h",
47 "thread_local.h", 49 "thread_local.h",
48 "time.h", 50 "time.h",
49 "value_state.cc", 51 "value_state.cc",
50 "value_state.h", 52 "value_state.h",
51 ] 53 ]
52 54
53 configs += [ "//gpu:gpu_implementation" ] 55 configs += [ "//gpu:gpu_implementation" ]
54 56
55 deps = [ 57 deps = [
56 ":gles2_utils", 58 ":gles2_utils",
57 "//base", 59 "//base",
58 ] 60 ]
59 } 61 }
60 62
61 component("gles2_utils") { 63 component("gles2_utils") {
62 sources = [ 64 sources = [
63 "gles2_cmd_utils.cc", 65 "gles2_cmd_utils.cc",
64 "gles2_cmd_utils.h", 66 "gles2_cmd_utils.h",
65 "gles2_utils_export.h", 67 "gles2_utils_export.h",
66 ] 68 ]
67 69
68 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] 70 defines = [ "GLES2_UTILS_IMPLEMENTATION" ]
69 71
70 deps = [ 72 deps = [
71 "//base", 73 "//base",
72 ] 74 ]
73 75
74 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] 76 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
75 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698