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' |