summaryrefslogtreecommitdiff
path: root/chromium/third_party/skia/gn/checkpath.py
blob: 0402b2c5912eb1493069bf3eca374cf85b0d04ec (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env python
# Copyright 2019 Google LLC.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

from __future__ import print_function

import os
import sys

print(all(os.path.exists(a) for a in sys.argv[1:]))