Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Side by Side Diff: sky/tools/skypy/paths.py

Issue 702603005: Add a sketch of a test_perf script (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
5 import os
6
7 BUILD_DIRECTORY = 'out'
8 CONFIG_DIRECTORY = 'Debug'
9 SRC_ROOT = os.path.abspath(os.path.join(__file__,
10 os.pardir, os.pardir, os.pardir, os.pardir))
11 SKY_ROOT = os.path.join(SRC_ROOT, 'sky')
12 GEN_ROOT = os.path.join(SRC_ROOT, BUILD_DIRECTORY, CONFIG_DIRECTORY, 'gen')
13 SKY_TOOLS_DIRECTORY = os.path.join(SRC_ROOT, 'sky', 'tools')
14 MOJO_SHELL_PATH = os.path.join(SRC_ROOT, BUILD_DIRECTORY, CONFIG_DIRECTORY, 'moj o_shell')
OLDNEW
« no previous file with comments | « sky/tools/skypy/__init__.py ('k') | sky/tools/test_perf » ('j') | sky/tools/test_perf » ('J')

Powered by Google App Engine
This is Rietveld 408576698