Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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()) |
| OLD | NEW |