blob: 35eab7043a24b09af8035939e092d1b50ea843c9 [file] [log] [blame]
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
# Add the third_party/ dir to our search path so that we can find the
# modules in there automatically. This isn't normal, so don't replicate
# this pattern elsewhere.
third_party = os.path.normpath(os.path.join(os.path.dirname(os.path.realpath(
__file__)), 'third_party'))
sys.path.insert(0, third_party)
# List of third_party packages that might need subpaths added to search.
paths = [
'pyelftools',
]
for path in paths:
sys.path.insert(1, os.path.join(third_party, path))
del path, paths, third_party