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

Unified Diff: third_party/WebKit/Source/config.gni

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/Source/config.gni
diff --git a/third_party/WebKit/Source/config.gni b/third_party/WebKit/Source/config.gni
index cb1d7083c5e711df1a1816e5d55a94558308efb4..e8e0050bbbc2ce22efe65730f5cb87dbb85479a1 100644
--- a/third_party/WebKit/Source/config.gni
+++ b/third_party/WebKit/Source/config.gni
@@ -47,7 +47,10 @@ use_concatenated_impulse_responses = true
# feature_defines_list ---------------------------------------------------------
-feature_defines_list = [ "ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0" ]
+feature_defines_list = [
+ "ENABLE_LAYOUT_UNIT_IN_INLINE_BOXES=0",
+ "ENABLE_OILPAN=1",
+]
if (is_debug) {
# TODO(GYP) this should also be set when release_valgrind_build is set,
@@ -83,9 +86,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_off_in_release && !is_debug) {
feature_defines_list += [ "ENABLE_ASSERT=0" ]
}

Powered by Google App Engine
This is Rietveld 408576698