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

Side by Side Diff: build/android/gyp/touch.py

Issue 2101243005: Add a snapshot of flutter/engine/src/build to our sdk (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add README.dart Created 4 years, 5 months 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 #!/usr/bin/env python
2 #
3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 import sys
8
9 from util import build_utils
10
11 def main(argv):
12 for f in argv[1:]:
13 build_utils.Touch(f)
14
15 if __name__ == '__main__':
16 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java ('k') | build/android/gyp/util/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698