Ignore genperf lib in merge_libs.py.

It's built as a part of the chromium build(?), but causes problems with XCode 7's new bitcode intermediate format. It should really never been included, but it never caused link failures before.

BUG=

Review URL: https://codereview.webrtc.org/1236383002

Cr-Commit-Position: refs/heads/master@{#9606}
This commit is contained in:
noahric
2015-07-21 12:54:34 -07:00
committed by Commit bot
parent 343714eb06
commit 83d6b0c254

View File

@ -16,7 +16,7 @@ import os
import subprocess
import sys
IGNORE_PATTERNS = ['do_not_use', 'protoc']
IGNORE_PATTERNS = ['do_not_use', 'protoc', 'genperf']
def FindFiles(path, pattern):
"""Finds files matching |pattern| under |path|.