12 lines
469 B
Bash
12 lines
469 B
Bash
|
|
||
|
# Allow building against system libraries in official builds
|
||
|
sed -i 's/OFFICIAL_BUILD/GOOGLE_CHROME_BUILD/' \
|
||
|
tools/generate_shim_headers/generate_shim_headers.py
|
||
|
|
||
|
# https://crbug.com/893950
|
||
|
sed -i -e 's/\<xmlMalloc\>/malloc/' -e 's/\<xmlFree\>/free/' \
|
||
|
third_party/blink/renderer/core/xml/*.cc \
|
||
|
third_party/blink/renderer/core/xml/parser/xml_document_parser.cc \
|
||
|
third_party/libxml/chromium/*.cc \
|
||
|
third_party/maldoca/src/maldoca/ole/oss_utils.h
|