diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 12:22:20 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-23 12:22:20 +0000 |
commit | 3adc005112670c2c1c25e5e2525e2451c4ed5075 (patch) | |
tree | 201efa85c7e58243042b97e5e824445a718292c8 /tools/checkperms | |
parent | a251f39859aa9fa56a5879ceda152bdde2c241d0 (diff) | |
download | chromium_src-3adc005112670c2c1c25e5e2525e2451c4ed5075.zip chromium_src-3adc005112670c2c1c25e5e2525e2451c4ed5075.tar.gz chromium_src-3adc005112670c2c1c25e5e2525e2451c4ed5075.tar.bz2 |
Fix check_perms false positive introduced in r102477.
TBR=mark@chromium.org
Review URL: http://codereview.chromium.org/7966034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102481 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/checkperms')
-rwxr-xr-x | tools/checkperms/checkperms.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/checkperms/checkperms.py b/tools/checkperms/checkperms.py index ffe3ec2..d8b59bd 100755 --- a/tools/checkperms/checkperms.py +++ b/tools/checkperms/checkperms.py @@ -1,5 +1,5 @@ -#!/usr/bin/python -# Copyright (c) 2010 The Chromium Authors. All rights reserved. +#!/usr/bin/env python +# Copyright (c) 2011 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. @@ -66,6 +66,11 @@ WHITELIST_FILES = [ '/third_party/lcov/bin/genpng', '/third_party/lcov/bin/lcov', '/third_party/lcov/bin/mcov', + '/third_party/lcov-1.9/bin/gendesc', + '/third_party/lcov-1.9/bin/genhtml', + '/third_party/lcov-1.9/bin/geninfo', + '/third_party/lcov-1.9/bin/genpng', + '/third_party/lcov-1.9/bin/lcov', '/third_party/libxml/linux/xml2-config', '/third_party/lzma_sdk/executable/7za.exe', '/third_party/swig/linux/swig', |