189335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org#!/usr/bin/python
289335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
389335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# Copyright 2014 Google Inc.
489335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org#
589335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# Use of this source code is governed by a BSD-style license that can be
689335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# found in the LICENSE file.
789335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
889335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org"""
989335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgCommon variables for tests.
1089335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org"""
1189335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
1289335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgimport os
1389335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
1489335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# Find this file so we can find the python files to test.
1589335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgSCRIPT_DIR = os.path.dirname(__file__)
1689335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgANDROID_DIR = os.path.normpath(os.path.join(SCRIPT_DIR, os.pardir))
1789335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
1889335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# Path to gyp_to_android.
1989335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgBIN_DIR = os.path.join(ANDROID_DIR, 'bin')
2089335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org
2189335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.org# Path to generator files.
2289335631749b29ea92e55ed710f030692aa13297commit-bot@chromium.orgGYP_GEN_DIR = os.path.join(ANDROID_DIR, 'gyp_gen')
23d6656854697b2039fb88a4afd6bc1995bf6dfa02commit-bot@chromium.org
24d6656854697b2039fb88a4afd6bc1995bf6dfa02commit-bot@chromium.orgANDROID_MK = 'Android.mk'
25