mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 10:41:31 +00:00
Bug: 759146 Change-Id: I19edd0b525044655bb9a38b7ada0be9064457f38 Reviewed-on: https://chromium-review.googlesource.com/636446 Commit-Queue: Sébastien Marchand <sebmarchand@chromium.org> Reviewed-by: Marc-Antoine Ruel <maruel@chromium.org>
12 lines
394 B
Batchfile
12 lines
394 B
Batchfile
@echo off
|
|
:: Copyright 2017 The Chromium Authors. All rights reserved.
|
|
:: Use of this source code is governed by a BSD-style license that can be
|
|
:: found in the LICENSE file.
|
|
setlocal
|
|
|
|
:: Ensure that "depot_tools" is somewhere in PATH so this tool can be used
|
|
:: standalone, but allow other PATH manipulations to take priority.
|
|
set PATH=%PATH%;%~dp0
|
|
|
|
python -u "%~dp0compile_single_file.py" %*
|