• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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