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 10_SYSTRACE_DIR = os.path.abspath( 11 os.path.join(os.path.dirname(__file__), os.path.pardir)) 12sys.path.insert(0, _SYSTRACE_DIR) 13from systrace import systrace 14 15if __name__ == '__main__': 16 sys.exit(systrace.main()) 17