mirror of
https://chromium.googlesource.com/chromium/tools/depot_tools.git
synced 2026-01-11 18:51:29 +00:00
R=apolito@google.com, dpranke@google.com Bug: 1199102 Change-Id: I06ff344ac91464eb558e92598c87e43ecfa830dc Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2994488 Auto-Submit: Josip Sokcevic <sokcevic@google.com> Commit-Queue: Dirk Pranke <dpranke@google.com> Reviewed-by: Anthony Polito <apolito@google.com> Reviewed-by: Dirk Pranke <dpranke@google.com>
12 lines
395 B
Batchfile
12 lines
395 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
|
|
|
|
python3 -u "%~dp0compile_single_file.py" %*
|