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

Side by Side Diff: third_party/flatbuffers/flatc_wrapper.py

Issue 1907603005: Add a dependency for FlatBuffers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testonly for generated files Created 4 years, 8 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 # Copyright (c) 2016 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 """
7 A simple wrapper to flatc, executes whatever is passed as parameters.
8 """
9
10 import subprocess
11 import sys
12
13 def main(args):
14 return subprocess.call(args[1:])
15
16 if __name__ == '__main__':
17 sys.exit(main(sys.argv))
OLDNEW
« third_party/flatbuffers/flatc.gni ('K') | « third_party/flatbuffers/flatc.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698