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

Unified Diff: tools/profile_chrome/third_party/perf_to_tracing.py

Issue 296623002: Integrate perfvis profiling mode, and temporary report generator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | tools/telemetry/telemetry/core/platform/profiler/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/profile_chrome/third_party/perf_to_tracing.py
diff --git a/tools/profile_chrome/third_party/perf_to_tracing.py b/tools/profile_chrome/third_party/perf_to_tracing.py
index 280937a8f49b85322138931ad035bb7aebf44fea..5458c53506776b388b60f4c6a5420a83c18e4e70 100644
--- a/tools/profile_chrome/third_party/perf_to_tracing.py
+++ b/tools/profile_chrome/third_party/perf_to_tracing.py
@@ -51,7 +51,7 @@ def FilterSymbolModule(module):
m = dso_to_comp.get(module, None)
if m:
return m
- if module.find('libchrome.') == 0:
+ if module.find('libchrome') == 0 or module.find('libcontent_shell') == 0:
return 'Chrome'
if module.find('dalvik') >= 0 or module.find('@') >= 0:
return 'Java'
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/platform/profiler/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698