summaryrefslogtreecommitdiffstats
path: root/third_party/devscripts
diff options
context:
space:
mode:
authorsbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-22 06:02:46 +0000
committersbc@chromium.org <sbc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-22 06:02:46 +0000
commitdb60622a70f0188f4b0a012f9d0a5195038c6c73 (patch)
tree917c2eb0c69df069d66da30801d9436214817ccc /third_party/devscripts
parent87a054059b2ddc01fe8ee13943baea37c4773971 (diff)
downloadchromium_src-db60622a70f0188f4b0a012f9d0a5195038c6c73.zip
chromium_src-db60622a70f0188f4b0a012f9d0a5195038c6c73.tar.gz
chromium_src-db60622a70f0188f4b0a012f9d0a5195038c6c73.tar.bz2
Add python mock library to third_party.
This is needed for python test code bring written as part of the NaCl SDK: https://codereview.chromium.org/12278012/ Since this module seems to be the future of python mocking it seems likely that other parts of chromium will also need access to this in the future. BUG=176618,177268 Review URL: https://chromiumcodereview.appspot.com/12282013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184037 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/devscripts')
-rwxr-xr-xthird_party/devscripts/licensecheck.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/devscripts/licensecheck.pl b/third_party/devscripts/licensecheck.pl
index 3be28de..4543a88 100755
--- a/third_party/devscripts/licensecheck.pl
+++ b/third_party/devscripts/licensecheck.pl
@@ -477,6 +477,9 @@ sub parselicense($) {
$license = "BSD-like $license";
} elsif ($licensetext =~ /BSD terms apply/) {
$license = "BSD-like $license";
+ } elsif ($licensetext =~ /subject to the BSD License/) {
+ # TODO(sbc): remove this case once we fix: http://crbug.com/177268
+ $license = "BSD-like $license";
} elsif ($licensetext =~ /GOVERNED BY A BSD-STYLE SOURCE LICENSE/) {
$license = "BSD-like $license";
}