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

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

Issue 1011823002: Fix some GN component build issues. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 9 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
« no previous file with comments | « gpu/command_buffer/client/BUILD.gn ('k') | gpu/command_buffer/service/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 source_set("common") { 5 source_set("common") {
6 sources = [ 6 sources = [
7 "bitfield_helpers.h", 7 "bitfield_helpers.h",
8 "buffer.cc", 8 "buffer.cc",
9 "buffer.h", 9 "buffer.h",
10 "capabilities.cc", 10 "capabilities.cc",
(...skipping 14 matching lines...) Expand all
25 "mailbox.cc", 25 "mailbox.cc",
26 "mailbox.h", 26 "mailbox.h",
27 "mailbox_holder.cc", 27 "mailbox_holder.cc",
28 "mailbox_holder.h", 28 "mailbox_holder.h",
29 "thread_local.h", 29 "thread_local.h",
30 "time.h", 30 "time.h",
31 "value_state.cc", 31 "value_state.cc",
32 "value_state.h", 32 "value_state.h",
33 ] 33 ]
34 34
35 defines = [ "GPU_IMPLEMENTATION" ] 35 configs += [ "//gpu:gpu_implementation" ]
36 36
37 deps = [ 37 deps = [
38 ":gles2_utils", 38 ":gles2_utils",
39 "//base", 39 "//base",
40 ] 40 ]
41 } 41 }
42 42
43 component("gles2_utils") { 43 component("gles2_utils") {
44 sources = [ 44 sources = [
45 "gles2_cmd_utils.cc", 45 "gles2_cmd_utils.cc",
46 "gles2_cmd_utils.h", 46 "gles2_cmd_utils.h",
47 "gles2_utils_export.h", 47 "gles2_utils_export.h",
48 ] 48 ]
49 49
50 defines = [ "GLES2_UTILS_IMPLEMENTATION" ] 50 defines = [ "GLES2_UTILS_IMPLEMENTATION" ]
51 51
52 deps = [ 52 deps = [
53 "//base", 53 "//base",
54 ] 54 ]
55 55
56 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] 56 all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
57 } 57 }
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/BUILD.gn ('k') | gpu/command_buffer/service/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698