You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
292 lines
9.6 KiB
292 lines
9.6 KiB
use_relative_paths = True
|
|
|
|
vars = {
|
|
# By default, we should check out everything needed to run on the main
|
|
# chromium waterfalls. This var can be also be set to "small", in order
|
|
# to skip things are not strictly needed to build chromium for development
|
|
# purposes.
|
|
'checkout_configuration': 'default',
|
|
|
|
'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"',
|
|
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
'pdfium_git': 'https://pdfium.googlesource.com',
|
|
|
|
'android_ndk_revision': '27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87',
|
|
'binutils_revision': '01aa7745b0bab64ae22600f09fd6483c60f22ebf',
|
|
'build_revision': '1bee638a8c4a9481ea06df4982d69488d0a5626d',
|
|
'buildtools_revision': '1f38b432e5630619f3aba0a22b9b63d606aee35a',
|
|
'catapult_revision': 'f7d73bb520283d2a06b8fde8a1b02aa33414fcd0',
|
|
'clang_revision': '42fbdfef1ce265b09dc6bda2ed90d83324c97481',
|
|
'code_coverage_revision': 'c7a868bacaccf4f52848e04564fb7de0671e0727',
|
|
'depot_tools_revision': 'e9730d75a00548a22e4392567243969d85c02dd4',
|
|
'freetype_revision': 'e5038be70414cf66da6c4d5ce4e30375884c30d8',
|
|
'gtest_revision': '5395345ca4f0c596110188688ed990e0de5a181c',
|
|
'icu_revision': 'dbd3825b31041d782c5b504c59dcfb5ac7dda08c',
|
|
'instrumented_lib_revision': '4dca59c6a614b08b394ed6154a8fcded9298b07e',
|
|
'jinja2_revision': 'b41863e42637544c2941b574c7877d3e1f663e25',
|
|
'jpeg_turbo_revision': 'ce0e57e8e636f5132fe6f0590a4dba91f92fd935',
|
|
'markupsafe_revision': '8f45f5cfa0009d2a70589bcda0349b8cb2b72783',
|
|
'pdfium_tests_revision': '02dd653ec62649b6f1aa4e4526071cc32d903f54',
|
|
'skia_revision': 'd50cc95872a8a832faea0154f7ea1fd56cebc775',
|
|
'tools_memory_revision': 'f7b00daf4df7f6c469f5fbc68d7f40f6bd15d6e6',
|
|
'trace_event_revision': '81c050f857a0e3c960cfd87f37e3d30d2ef78718',
|
|
'v8_revision': 'cd34145326def51cb6dcf87aed7d0caf9f62bb4f',
|
|
'yasm_source_revision': '720b70524a4424b15fc57e82263568c8ba0496ad',
|
|
'zlib_revision': '814da1f383b625955149c3845db62af3f29a4ffe',
|
|
}
|
|
|
|
deps = {
|
|
"base/trace_event/common":
|
|
Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" +
|
|
Var('trace_event_revision'),
|
|
|
|
"build":
|
|
Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'),
|
|
|
|
"buildtools":
|
|
Var('chromium_git') + "/chromium/src/buildtools.git@" +
|
|
Var('buildtools_revision'),
|
|
|
|
"testing/corpus":
|
|
Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'),
|
|
|
|
"third_party/android_ndk": {
|
|
'url': Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'),
|
|
'condition': 'checkout_android',
|
|
},
|
|
|
|
"third_party/binutils":
|
|
Var('chromium_git') + "/chromium/src/third_party/binutils.git@" +
|
|
Var('binutils_revision'),
|
|
|
|
"third_party/catapult": {
|
|
'url': Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
|
|
'condition': 'checkout_android',
|
|
},
|
|
|
|
'third_party/depot_tools':
|
|
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' +
|
|
Var('depot_tools_revision'),
|
|
|
|
"third_party/freetype/src":
|
|
Var('chromium_git') + '/chromium/src/third_party/freetype2.git@' +
|
|
Var('freetype_revision'),
|
|
|
|
"third_party/googletest/src":
|
|
Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' +
|
|
Var('gtest_revision'),
|
|
|
|
"third_party/icu":
|
|
Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'),
|
|
|
|
"third_party/instrumented_libraries":
|
|
Var('chromium_git') +
|
|
"/chromium/src/third_party/instrumented_libraries.git@" +
|
|
Var('instrumented_lib_revision'),
|
|
|
|
"third_party/jinja2":
|
|
Var('chromium_git') + "/chromium/src/third_party/jinja2.git@" +
|
|
Var('jinja2_revision'),
|
|
|
|
"third_party/markupsafe":
|
|
Var('chromium_git') + "/chromium/src/third_party/markupsafe.git@" +
|
|
Var('markupsafe_revision'),
|
|
|
|
"third_party/libjpeg_turbo":
|
|
Var('chromium_git') + "/chromium/deps/libjpeg_turbo.git@" +
|
|
Var('jpeg_turbo_revision'),
|
|
|
|
"third_party/skia":
|
|
Var('chromium_git') + '/skia.git@' + Var('skia_revision'),
|
|
|
|
"third_party/zlib":
|
|
Var('chromium_git') + "/chromium/src/third_party/zlib.git@" +
|
|
Var('zlib_revision'),
|
|
|
|
'third_party/yasm/source/patched-yasm':
|
|
Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git@' +
|
|
Var('yasm_source_revision'),
|
|
|
|
"tools/clang":
|
|
Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'),
|
|
|
|
"tools/code_coverage":
|
|
Var('chromium_git') + "/chromium/src/tools/code_coverage.git@" +
|
|
Var('code_coverage_revision'),
|
|
|
|
"tools/memory":
|
|
Var('chromium_git') + "/chromium/src/tools/memory@" +
|
|
Var('tools_memory_revision'),
|
|
|
|
"v8":
|
|
Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'),
|
|
}
|
|
|
|
recursedeps = [
|
|
# buildtools provides clang_format, libc++, and libc++abi
|
|
'buildtools',
|
|
]
|
|
|
|
include_rules = [
|
|
# Basic stuff that everyone can use.
|
|
# Note: public is not here because core cannot depend on public.
|
|
'+build/build_config.h',
|
|
'+constants',
|
|
'+testing',
|
|
'+third_party/base',
|
|
]
|
|
|
|
specific_include_rules = {
|
|
# Allow embedder tests to use public APIs.
|
|
"(.*embeddertest\.cpp)": [
|
|
"+public",
|
|
]
|
|
}
|
|
|
|
hooks = [
|
|
{
|
|
# Case-insensitivity for the Win SDK. Must run before win_toolchain below.
|
|
'name': 'ciopfs_linux',
|
|
'pattern': '.',
|
|
'condition': 'checkout_win and host_os == "linux"',
|
|
'action': [ 'python',
|
|
'pdfium/third_party/depot_tools/download_from_google_storage.py',
|
|
'--no_resume',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-browser-clang/ciopfs',
|
|
'-s', 'pdfium/build/ciopfs.sha1',
|
|
]
|
|
},
|
|
{
|
|
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
|
'name': 'win_toolchain',
|
|
'pattern': '.',
|
|
'condition': 'checkout_win',
|
|
'action': ['python', 'pdfium/build/vs_toolchain.py', 'update', '--force'],
|
|
},
|
|
{
|
|
# Update the Mac toolchain if necessary.
|
|
'name': 'mac_toolchain',
|
|
'pattern': '.',
|
|
'action': ['python', 'pdfium/build/mac_toolchain.py'],
|
|
},
|
|
{
|
|
# Pull clang-format binaries using checked-in hashes.
|
|
'name': 'clang_format_win',
|
|
'pattern': '.',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', 'pdfium/buildtools/win/clang-format.exe.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'clang_format_mac',
|
|
'pattern': '.',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=darwin',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', 'pdfium/buildtools/mac/clang-format.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'clang_format_linux',
|
|
'pattern': '.',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=linux*',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-clang-format',
|
|
'-s', 'pdfium/buildtools/linux64/clang-format.sha1',
|
|
],
|
|
},
|
|
{
|
|
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
'name': 'clang',
|
|
'pattern': '.',
|
|
'action': ['python',
|
|
'pdfium/tools/clang/scripts/update.py'
|
|
],
|
|
},
|
|
{
|
|
'name': 'binutils',
|
|
'pattern': 'src/third_party/binutils',
|
|
'condition': 'host_os == "linux"',
|
|
'action': [
|
|
'python',
|
|
'pdfium/third_party/binutils/download.py',
|
|
],
|
|
},
|
|
{
|
|
'name': 'sysroot_arm',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and checkout_arm',
|
|
'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=arm'],
|
|
},
|
|
{
|
|
'name': 'sysroot_arm64',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and checkout_arm64',
|
|
'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=arm64'],
|
|
},
|
|
{
|
|
'name': 'sysroot_x86',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
|
'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=x86'],
|
|
},
|
|
{
|
|
'name': 'sysroot_mips',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and checkout_mips',
|
|
'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=mips'],
|
|
},
|
|
{
|
|
'name': 'sysroot_x64',
|
|
'pattern': '.',
|
|
'condition': 'checkout_linux and checkout_x64',
|
|
'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py',
|
|
'--arch=x64'],
|
|
},
|
|
{
|
|
'name': 'msan_chained_origins',
|
|
'pattern': '.',
|
|
'condition': 'checkout_instrumented_libraries',
|
|
'action': [ 'python',
|
|
'pdfium/third_party/depot_tools/download_from_google_storage.py',
|
|
"--no_resume",
|
|
"--no_auth",
|
|
"--bucket", "chromium-instrumented-libraries",
|
|
"-s", "pdfium/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
|
|
],
|
|
},
|
|
{
|
|
'name': 'msan_no_origins',
|
|
'pattern': '.',
|
|
'condition': 'checkout_instrumented_libraries',
|
|
'action': [ 'python',
|
|
'pdfium/third_party/depot_tools/download_from_google_storage.py',
|
|
"--no_resume",
|
|
"--no_auth",
|
|
"--bucket", "chromium-instrumented-libraries",
|
|
"-s", "pdfium/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
|
|
],
|
|
},
|
|
{
|
|
# Update LASTCHANGE.
|
|
'name': 'lastchange',
|
|
'pattern': '.',
|
|
'action': ['python', 'pdfium/build/util/lastchange.py',
|
|
'-o', 'pdfium/build/util/LASTCHANGE'],
|
|
},
|
|
]
|