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

Side by Side Diff: webrtc/build/ios/merge_ios_libs

Issue 1801943003: Move build scripts to webrtc/build/ios (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix some presubmit errors and remove talk/build Created 4 years, 9 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
1 #!/usr/bin/python 1 #!/usr/bin/python
2 # 2 #
3 # libjingle 3 # libjingle
tkchin_webrtc 2016/03/14 23:22:10 update license
hjon_webrtc 2016/03/15 21:07:48 Done.
4 # Copyright 2015 Google Inc. 4 # Copyright 2015 Google Inc.
5 # 5 #
6 # Redistribution and use in source and binary forms, with or without 6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are met: 7 # modification, are permitted provided that the following conditions are met:
8 # 8 #
9 # 1. Redistributions of source code must retain the above copyright notice, 9 # 1. Redistributions of source code must retain the above copyright notice,
10 # this list of conditions and the following disclaimer. 10 # this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright notice, 11 # 2. Redistributions in binary form must reproduce the above copyright notice,
12 # this list of conditions and the following disclaimer in the documentation 12 # this list of conditions and the following disclaimer in the documentation
13 # and/or other materials provided with the distribution. 13 # and/or other materials provided with the distribution.
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 def Main(): 129 def Main():
130 parser = optparse.OptionParser() 130 parser = optparse.OptionParser()
131 _, args = parser.parse_args() 131 _, args = parser.parse_args()
132 if len(args) != 1: 132 if len(args) != 1:
133 parser.error('Error: Exactly 1 argument required.') 133 parser.error('Error: Exactly 1 argument required.')
134 lib_base_dir = args[0] 134 lib_base_dir = args[0]
135 MergeLibs(lib_base_dir) 135 MergeLibs(lib_base_dir)
136 136
137 if __name__ == '__main__': 137 if __name__ == '__main__':
138 sys.exit(Main()) 138 sys.exit(Main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698