Index: Source/config.gni |
diff --git a/Source/config.gni b/Source/config.gni |
index 9e308d9f08f1cf4e310877bce533a590e7d22bda..d50a0235f52e4f65c387b89e669462a9ebe790d5 100644 |
--- a/Source/config.gni |
+++ b/Source/config.gni |
@@ -46,6 +46,14 @@ use_webaudio_ffmpeg = !is_mac && !is_android |
# TODO(brettw) do we need this or can we assume its always on? |
use_concatenated_impulse_responses = true |
+# public_feature_defines_list -------------------------------------------------- |
+ |
+public_feature_defines_list = [] |
+ |
+if (enable_oilpan) { |
+ public_feature_defines_list += [ "ENABLE_OILPAN=1" ] |
+} |
+ |
# feature_defines_list --------------------------------------------------------- |
feature_defines_list = [ |
@@ -85,9 +93,6 @@ if (use_openmax_dl_fft) { |
if (use_default_render_theme) { |
feature_defines_list += [ "WTF_USE_DEFAULT_RENDER_THEME=1" ] |
} |
-if (enable_oilpan) { |
- feature_defines_list += [ "ENABLE_OILPAN=1" ] |
-} |
if (blink_asserts_always_on) { |
feature_defines_list += [ "ENABLE_ASSERT=1" ] |
} |