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

Unified Diff: tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py

Issue 1414713006: Only use the PGO optimizations on chrome_child.dll (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « chrome/chrome_dll.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py
diff --git a/tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py b/tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py
index 664749b1b851b884999989f372402f4006460026..163e9e6190a209e5c82612580ebae7ecdba393d0 100644
--- a/tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py
+++ b/tools/telemetry/telemetry/internal/platform/profiler/win_pgo_profiler.py
@@ -31,7 +31,6 @@ class WinPGOProfiler(profiler.Profiler):
' this.' % _PGOSWEEP_EXECUTABLE)
self._browser_dir = browser_backend.browser_directory
- self._chrome_pgc_counter = self._GetNextProfileIndex('chrome')
self._chrome_child_pgc_counter = self._GetNextProfileIndex('chrome_child')
def _GetNextProfileIndex(self, dll_name):
@@ -93,9 +92,4 @@ class WinPGOProfiler(profiler.Profiler):
'chrome_child',
self._chrome_child_pgc_counter))
self._chrome_child_pgc_counter += 1
- elif 'browser0' in output_file:
- output_files.append(self._RunPGOSweep(pid,
- 'chrome',
- self._chrome_pgc_counter))
- self._chrome_pgc_counter += 1
return output_files
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698