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

Unified Diff: Source/config.gni

Issue 864723003: Made blink gyps and gns to public oilpan configuration (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing (fix android build failure) Created 5 years, 10 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 | « Source/build/features.gypi ('k') | public/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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" ]
}
« no previous file with comments | « Source/build/features.gypi ('k') | public/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698