diff options
author | gdk@chromium.org <gdk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 22:52:57 +0000 |
---|---|---|
committer | gdk@chromium.org <gdk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-10 22:52:57 +0000 |
commit | 30bd16773e43d552771f6a873be8eeddd789a2d7 (patch) | |
tree | cd4638069033d028b10194d1b94855cc937650a8 /tools/checklicenses | |
parent | 37e056b784278969c38867c8f9d3ede2775beef8 (diff) | |
download | chromium_src-30bd16773e43d552771f6a873be8eeddd789a2d7.zip chromium_src-30bd16773e43d552771f6a873be8eeddd789a2d7.tar.gz chromium_src-30bd16773e43d552771f6a873be8eeddd789a2d7.tar.bz2 |
Adding use_system_libusb option for third_party/libusb
There are build and distribution configurations under which packaged libraries
cannot be included. The use_system_libusb option allows these platforms (Linux,
currently) to use the pre-installed libusb.
BUG=124803
TEST=none
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=136127
Review URL: https://chromiumcodereview.appspot.com/10332075
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136421 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checklicenses')
-rwxr-xr-x | tools/checklicenses/checklicenses.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/checklicenses/checklicenses.py b/tools/checklicenses/checklicenses.py index 7e465d6..a0c1560 100755 --- a/tools/checklicenses/checklicenses.py +++ b/tools/checklicenses/checklicenses.py @@ -245,19 +245,19 @@ PATH_SPECIFIC_WHITELISTED_LICENSES = { ], # The following files lack license headers, but are trivial. - 'third_party/libusb/libusb/os/poll_posix.h': [ + 'third_party/libusb/src/libusb/os/poll_posix.h': [ 'UNKNOWN', ], - 'third_party/libusb/libusb/version.h': [ + 'third_party/libusb/src/libusb/version.h': [ 'UNKNOWN', ], - 'third_party/libusb/autogen.sh': [ + 'third_party/libusb/src/autogen.sh': [ 'UNKNOWN', ], - 'third_party/libusb/config.h': [ + 'third_party/libusb/src/config.h': [ 'UNKNOWN', ], - 'third_party/libusb/msvc/config.h': [ + 'third_party/libusb/src/msvc/config.h': [ 'UNKNOWN', ], |