|  | 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', | 
|  |  | 
|  | # TODO(dpranke): change to != "small" once != is supported. | 
|  | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"', | 
|  |  | 
|  | 'chromium_git': 'https://chromium.googlesource.com', | 
|  | 'pdfium_git': 'https://pdfium.googlesource.com', | 
|  |  | 
|  | 'android_ndk_revision': '5cd86312e794bdf542a3685c6f10cbb96072990b', | 
|  | 'binutils_revision': 'e146228c20af6af922887d0be2d3641cbffb33c5', | 
|  | 'build_revision': '10a93c2ce7360864b59aecfed4c6b8608cd2f0cc', | 
|  | 'buildtools_revision': '893eb86b02b2571894e328f05551112b96df1cce', | 
|  | 'catapult_revision': '8fbdf9f10b76595b6299e577709f2608ae29e19a', | 
|  | 'clang_revision': 'c893c7eec4706f8c7fc244ee254b1dadd8f8d158', | 
|  | 'code_coverage_revision': '14b8501b7d9f41826d632254a1df8bc664edeec7', | 
|  | 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', | 
|  | 'depot_tools_revision': '869a2857a4f3acc08fdec6182ecec5b73593be3b', | 
|  | 'freetype_revision': '125b84800a3230305b7fbc8eedeee106fa78adae', | 
|  | 'gtest_revision': '4bd8c4638ada823a8da2569735cc0a9402fb8052', | 
|  | 'icu_revision': 'e4194dc7bbb3305d84cbb1b294274ca70d230721', | 
|  | 'instrumented_lib_revision': '323cf32193caecbf074d1a0cb5b02b905f163e0f', | 
|  | 'jinja2_revision': 'd34383206fa42d52faa10bb9931d6d538f3a57e0', | 
|  | 'jpeg_turbo_revision': '7260e4d8b8e1e40b17f03fafdf1cd83296900f76', | 
|  | 'markupsafe_revision': '8f45f5cfa0009d2a70589bcda0349b8cb2b72783', | 
|  | 'pdfium_tests_revision': '9b7ff5b879ce578f4f186ad546f45fc9fb592943', | 
|  | 'skia_revision': 'af7700265b74123d8ad3de6dde0c21545453140b', | 
|  | 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', | 
|  | 'trace_event_revision': '0e9a47d74970bee1bbfc063c47215406f8918699', | 
|  | 'v8_revision': '9cf8abb7ce7e3a3152fb71d0e87678e64f7ab0c8', | 
|  | 'yasm_source_revision': 'b98114e18d8b9b84586b10d24353ab8616d4c5fc', | 
|  | 'zlib_revision': '8c371ad77b836c02e44006dc2dc77c5d6d910861', | 
|  | } | 
|  |  | 
|  | 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/buildtools.git@" + | 
|  | Var('buildtools_revision'), | 
|  |  | 
|  | "testing/corpus": | 
|  | Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), | 
|  |  | 
|  | "third_party/binutils": | 
|  | Var('chromium_git') + "/chromium/src/third_party/binutils.git@" + | 
|  | Var('binutils_revision'), | 
|  |  | 
|  | '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'), | 
|  |  | 
|  | # TODO(GYP): Remove this when no tools rely on GYP anymore. | 
|  | "tools/gyp": | 
|  | Var('chromium_git') + '/external/gyp.git@' + | 
|  | 'eb296f67da078ec01f5e3a9ea9cdc6d26d680161', | 
|  |  | 
|  | "tools/memory": | 
|  | Var('chromium_git') + "/chromium/src/tools/memory@" + | 
|  | Var('tools_memory_revision'), | 
|  |  | 
|  | "v8": | 
|  | Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), | 
|  | } | 
|  |  | 
|  | deps_os = { | 
|  | "android": { | 
|  | "third_party/android_ndk": | 
|  | Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'), | 
|  | "third_party/catapult": | 
|  | Var('chromium_git') + | 
|  | "/external/github.com/catapult-project/catapult.git@" + | 
|  | Var('catapult_revision'), | 
|  | }, | 
|  | "win": { | 
|  | "v8/third_party/cygwin": | 
|  | Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_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. | 
|  | '+constants', | 
|  | '+testing', | 
|  | '+third_party/base', | 
|  | ] | 
|  |  | 
|  | specific_include_rules = { | 
|  | # Allow embedder tests to use public APIs. | 
|  | "(.*embeddertest\.cpp)": [ | 
|  | "+public", | 
|  | ] | 
|  | } | 
|  |  | 
|  | hooks = [ | 
|  | { | 
|  | 'name': 'gn_win', | 
|  | 'action': [ 'download_from_google_storage', | 
|  | '--no_resume', | 
|  | '--platform=win32', | 
|  | '--no_auth', | 
|  | '--bucket', 'chromium-gn', | 
|  | '-s', 'pdfium/buildtools/win/gn.exe.sha1', | 
|  | ], | 
|  | }, | 
|  | { | 
|  | 'name': 'gn_mac', | 
|  | 'pattern': '.', | 
|  | 'action': [ 'download_from_google_storage', | 
|  | '--no_resume', | 
|  | '--platform=darwin', | 
|  | '--no_auth', | 
|  | '--bucket', 'chromium-gn', | 
|  | '-s', 'pdfium/buildtools/mac/gn.sha1', | 
|  | ], | 
|  | }, | 
|  | { | 
|  | 'name': 'gn_linux64', | 
|  | 'pattern': '.', | 
|  | 'action': [ 'download_from_google_storage', | 
|  | '--no_resume', | 
|  | '--platform=linux*', | 
|  | '--no_auth', | 
|  | '--bucket', 'chromium-gn', | 
|  | '-s', 'pdfium/buildtools/linux64/gn.sha1', | 
|  | ], | 
|  | }, | 
|  | # 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', | 
|  | ], | 
|  | }, | 
|  | { | 
|  | # Pull clang | 
|  | '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'], | 
|  | }, | 
|  | { | 
|  | # 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. | 
|  | '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'], | 
|  | }, | 
|  | { | 
|  | '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", | 
|  | ], | 
|  | }, | 
|  | ] |