2020-05-11 17:20:39 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# vim: set filetype=python:
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "Networking")
|
|
|
|
|
2020-10-22 03:51:06 +03:00
|
|
|
TEST_DIRS += ['gtest']
|
2020-05-11 17:12:33 +03:00
|
|
|
|
2020-05-11 17:20:39 +03:00
|
|
|
EXPORTS.mozilla += [
|
2020-10-22 03:51:06 +03:00
|
|
|
'FetchPreloader.h',
|
|
|
|
'PreloaderBase.h',
|
|
|
|
'PreloadHashKey.h',
|
|
|
|
'PreloadService.h',
|
2020-05-11 17:20:39 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
2020-10-22 03:51:06 +03:00
|
|
|
'FetchPreloader.cpp',
|
|
|
|
'PreloaderBase.cpp',
|
|
|
|
'PreloadHashKey.cpp',
|
|
|
|
'PreloadService.cpp',
|
2020-05-11 17:20:39 +03:00
|
|
|
]
|
|
|
|
|
2020-10-22 03:51:06 +03:00
|
|
|
FINAL_LIBRARY = 'xul'
|
2020-09-15 00:03:52 +03:00
|
|
|
|
2020-10-22 03:51:06 +03:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|