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

Unified Diff: services/gles2/BUILD.gn

Issue 1348283004: Use MailboxManagerSync on android. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: use factory to create appropriate mailbox manager Created 5 years, 3 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
Index: services/gles2/BUILD.gn
diff --git a/services/gles2/BUILD.gn b/services/gles2/BUILD.gn
index 43e8cc09b04422d90dfc8d7ca4ddf0b0d9706b38..6b50543dbb31531dbdcc93e38f1fd41dea119204 100644
--- a/services/gles2/BUILD.gn
+++ b/services/gles2/BUILD.gn
@@ -19,8 +19,15 @@ source_set("gles2") {
"gpu_impl.h",
"gpu_state.cc",
"gpu_state.h",
+ "mailbox_manager_factory.h",
]
+ if (is_android) {
jamesr 2015/09/18 02:31:35 this probably deserves a comment explaining why th
cdotstout 2015/09/18 15:51:40 Done.
+ sources += [ "mailbox_manager_factory_sync.cc" ]
+ } else {
+ sources += [ "mailbox_manager_factory_nosync.cc" ]
+ }
+
public_deps = [
":lib",
]
« no previous file with comments | « no previous file | services/gles2/command_buffer_driver.h » ('j') | services/gles2/mailbox_manager_factory_sync.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698