xref: /aosp_15_r20/external/chromium-trace/catapult/systrace/bin/adb_profile_chrome (revision 1fa4b3da657c0e9ad43c0220bacf9731820715a5)
1#!/usr/bin/env python
2
3# Copyright 2016 The Chromium Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7import os
8import sys
9
10if __name__ == '__main__':
11  systrace_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
12  sys.path.append(systrace_path)
13  from profile_chrome import main
14  sys.exit(main.main())
15