14a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair#!/usr/bin/env python 24a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair# Copyright (c) 2014 The Chromium Authors. All rights reserved. 34a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair# Use of this source code is governed by a BSD-style license that can be 44a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair# found in the LICENSE file. 54a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair 64a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclairimport os 74a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclairimport sys 84a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair 94a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclairif __name__ == '__main__': 107332cdb42368a904cbf7418de329868989e592daChris Craik tracing_path = os.path.abspath(os.path.join( 117332cdb42368a904cbf7418de329868989e592daChris Craik os.path.dirname(os.path.realpath(__file__)), '..')) 124a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair sys.path.append(tracing_path) 134a4f2fe02baf385f6c24fc98c6e17bf6ac5e0724Dan Sinclair from tracing_build import generate_about_tracing_contents 148d2b206a675ec20ea07100c35df34e65ee1e45e8Ruchi Kandoi sys.exit(generate_about_tracing_contents.Main(sys.argv[1:])) 15