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

Unified Diff: sky/engine/config.gni

Issue 737793006: Add compile flag for enabling the compostior (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: cleanup Created 6 years, 1 month 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 | sky/engine/core/frame/FrameView.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/config.gni
diff --git a/sky/engine/config.gni b/sky/engine/config.gni
index cd8b6ee10c6b3ce15e076b012aab441a9f9c085d..a924e3a122ec6fffbb58065a9bc0c56fcd04ddf6 100644
--- a/sky/engine/config.gni
+++ b/sky/engine/config.gni
@@ -27,6 +27,8 @@ declare_args() {
sky_gc_plugin_dump_graph = false
sky_asserts_always_on = false
+
+ sky_enable_compostior = false
}
# feature_defines_list ---------------------------------------------------------
@@ -50,6 +52,9 @@ if (sky_enable_oilpan) {
if (sky_asserts_always_on) {
feature_defines_list += [ "ENABLE_ASSERT=1" ]
}
+if (sky_enable_compostior) {
+ feature_defines_list += [ "ENABLE_COMPOSITOR=1" ]
+}
# feature_defines_string -------------------------------------------------------
« no previous file with comments | « no previous file | sky/engine/core/frame/FrameView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698