From 227d2ab903e7b1ea5bf5790e37607cccbeac1680 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Thu, 2 Nov 2017 07:57:15 -0700 Subject: [PATCH] Adding zlib LICENSE to generate_licenses.py. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Starting from https://webrtc-review.googlesource.com/c/src/+/18140 (which includes https://chromium.googlesource.com/chromium/src/third_party/+/3296e11b3765efd589c740271e1abbe3b786e168) //third_party/protobuf starts to depend on //third_party/zlib. To fix the Chromium Roll WebRTC has add the license file of //third_party/zlib to its generate_licenses.py script in order to add it to markdown generated license file. Bug: None Change-Id: If504ef00b166fdbcbe22acb0a2721bfb55624d3e No-Try: True Reviewed-on: https://webrtc-review.googlesource.com/18244 Commit-Queue: Mirko Bonadei Reviewed-by: Patrik Höglund Cr-Commit-Position: refs/heads/master@{#20566} --- tools_webrtc/libs/generate_licenses.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools_webrtc/libs/generate_licenses.py b/tools_webrtc/libs/generate_licenses.py index 6c2a50a544..2ac8e6d437 100755 --- a/tools_webrtc/libs/generate_licenses.py +++ b/tools_webrtc/libs/generate_licenses.py @@ -40,6 +40,7 @@ LIB_TO_LICENSES_DICT = { 'protobuf': ['third_party/protobuf/LICENSE'], 'usrsctp': ['third_party/usrsctp/LICENSE'], 'webrtc': ['LICENSE', 'LICENSE_THIRD_PARTY'], + 'zlib': ['LICENSE', 'third_party/zlib/LICENSE'], # Compile time dependencies, no license needed: 'yasm': [],