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

Unified Diff: gpu/ipc/BUILD.gn

Issue 2556603002: Change gpu/ipc:command_buffer_sources to static_library (Closed)
Patch Set: Remove accidentally added /verbose Created 4 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/BUILD.gn
diff --git a/gpu/ipc/BUILD.gn b/gpu/ipc/BUILD.gn
index 5c03cf515ff20781fd818fd5a5459e6391b377dd..61afbc6f518ef720848f667174a11adb8b775a6b 100644
--- a/gpu/ipc/BUILD.gn
+++ b/gpu/ipc/BUILD.gn
@@ -16,7 +16,12 @@ group("command_buffer") {
}
}
-source_set("command_buffer_sources") {
+if (is_component_build) {
+ link_target_type = "source_set"
+} else {
+ link_target_type = "static_library"
+}
+target(link_target_type, "command_buffer_sources") {
visibility = [ "//gpu/*" ]
sources = [
"gpu_in_process_thread_service.cc",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698