mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
Make safebrowsing optional at build time - Part 3: toolkit/
This commit is contained in:
parent
62afe1838f
commit
5c16f3d5ba
5 changed files with 33 additions and 3 deletions
|
|
@ -32,8 +32,6 @@ XPIDL_SOURCES += [
|
|||
XPIDL_MODULE = 'downloads'
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'ApplicationReputation.cpp',
|
||||
'chromium/chrome/common/safe_browsing/csd.pb.cc',
|
||||
'nsDownloadManager.cpp'
|
||||
]
|
||||
|
||||
|
|
@ -42,6 +40,12 @@ SOURCES += [
|
|||
'SQLFunctions.cpp',
|
||||
]
|
||||
|
||||
if CONFIG['MOZ_URL_CLASSIFIER']:
|
||||
UNIFIED_SOURCES += [
|
||||
'ApplicationReputation.cpp',
|
||||
'chromium/chrome/common/safe_browsing/csd.pb.cc'
|
||||
]
|
||||
|
||||
if CONFIG['OS_ARCH'] == 'WINNT':
|
||||
# Can't build unified because we need CreateEvent which some IPC code
|
||||
# included in LoadContext ends up undefining.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue