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

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 2151583002: recipes/win: Stop explicitly disabling precompiled headers in recipes in goma builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 5 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: scripts/slave/recipe_modules/chromium/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index a6f17217e1cac1c7d35a9ac3679bb4a9d0588924..20c8c967bd05217df4d35eab6e2b29260ceed048 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -311,12 +311,6 @@ def goma(c):
if c.TARGET_PLATFORM == 'win' and c.compile_py.compiler != 'goma-clang':
fastbuild(c)
- pch(c, invert=True)
-
-@config_ctx()
-def pch(c, invert=False):
- if c.TARGET_PLATFORM == 'win':
- c.gyp_env.GYP_DEFINES['chromium_win_pch'] = int(not invert)
@config_ctx()
def dcheck(c, invert=False):

Powered by Google App Engine
This is Rietveld 408576698