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

Unified Diff: scripts/slave/compile.py

Issue 2218413004: Remove --goma-enable-compiler-info-cache option from compile.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 | « no previous file | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/compile.py
diff --git a/scripts/slave/compile.py b/scripts/slave/compile.py
index 8ad7685dee42da8bb18ba6fb47fd14e0a8b3e678..aef07d0a7f657e6261643c1195d0fd485ef72433 100755
--- a/scripts/slave/compile.py
+++ b/scripts/slave/compile.py
@@ -116,9 +116,6 @@ def goma_setup(options, env):
env['GOMA_ENABLE_REMOTE_LINK'] = options.goma_enable_remote_link
if options.goma_store_local_run_output:
env['GOMA_STORE_LOCAL_RUN_OUTPUT'] = options.goma_store_local_run_output
- if options.goma_enable_compiler_info_cache:
- # Will be stored in GOMA_CACHE_DIR.
- env['GOMA_COMPILER_INFO_CACHE_FILE'] = 'goma-compiler-info.cache'
if options.build_data_dir:
env['GOMA_DUMP_STATS_FILE'] = os.path.join(options.build_data_dir,
@@ -480,9 +477,6 @@ def get_parsed_options():
help='Set goma hermetic mode')
option_parser.add_option('--goma-enable-remote-link', default=None,
help='Enable goma remote link.')
- option_parser.add_option('--goma-enable-compiler-info-cache',
- action='store_true',
- help='Enable goma CompilerInfo cache')
option_parser.add_option('--goma-store-local-run-output', default=None,
help='Store local run output to goma servers.')
option_parser.add_option('--goma-fail-fast', action='store_true')
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698