1# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from telemetry.core import util
6
7# Bring in tvcm module for basic JS components capabilities.
8util.AddDirToPythonPath(
9    util.GetChromiumSrcDir(),
10    'third_party', 'trace-viewer', 'third_party', 'tvcm')
11
12# Bring in trace_viewer module for the UI features that are part of the trace
13# viewer.
14util.AddDirToPythonPath(
15    util.GetChromiumSrcDir(),
16    'third_party', 'trace-viewer')
17