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

Unified Diff: gpu/command_buffer/client/BUILD.gn

Issue 1591813002: Make //gpu/* pass gn check (and make it gn checked). (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: oops Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/command_buffer/client/buffer_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/BUILD.gn
diff --git a/gpu/command_buffer/client/BUILD.gn b/gpu/command_buffer/client/BUILD.gn
index 3be0a06b51fac8fb99479e90aa82cac8621ed034..4c1b1f21f3f93748330cb4c2f2c1036ef0e13f15 100644
--- a/gpu/command_buffer/client/BUILD.gn
+++ b/gpu/command_buffer/client/BUILD.gn
@@ -26,20 +26,16 @@ source_set("client") {
all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
deps = [
+ "//base",
"//gpu/command_buffer/common",
+ "//gpu/command_buffer/common:gles2_utils",
]
}
group("gles2_cmd_helper") {
- if (is_component_build) {
- deps = [
- "//gpu",
- ]
- } else {
- deps = [
- ":gles2_cmd_helper_sources",
- ]
- }
+ public_deps = [
+ ":gles2_cmd_helper_sources",
+ ]
}
source_set("gles2_cmd_helper_sources") {
@@ -62,6 +58,7 @@ source_set("gles2_cmd_helper_sources") {
deps = [
":client",
+ "//gpu/command_buffer/common",
]
}
@@ -122,6 +119,7 @@ source_set("gpu_memory_buffer_manager") {
configs += [ "//gpu:gpu_implementation" ]
deps = [
"//ui/gfx",
+ "//ui/gfx/geometry",
]
}
@@ -136,10 +134,12 @@ component("gles2_implementation") {
all_dependent_configs = [ "//third_party/khronos:khronos_headers" ]
deps = [
+ ":client",
":gles2_cmd_helper",
":gles2_interface",
"//base",
"//gpu/command_buffer/common",
+ "//gpu/command_buffer/common:gles2_utils",
"//ui/gfx/geometry",
]
}
@@ -157,8 +157,11 @@ component("gles2_implementation_no_check") {
]
deps = [
+ ":client",
":gles2_cmd_helper",
+ ":gles2_interface",
"//base",
+ "//gpu/command_buffer/common",
"//gpu/command_buffer/common:gles2_utils",
"//ui/gfx",
"//ui/gfx/geometry",
@@ -177,10 +180,10 @@ component("gl_in_process_context") {
deps = [
":gles2_implementation",
":gpu_memory_buffer_manager",
- "//gpu",
- "//gpu/command_buffer/common:gles2_utils",
"//base",
"//base/third_party/dynamic_annotations",
+ "//gpu",
+ "//gpu/command_buffer/common:gles2_utils",
"//ui/gfx/geometry",
"//ui/gl",
]
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/command_buffer/client/buffer_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698