use_relative_paths = True vars = { 'chromium_git': 'https://chromium.googlesource.com', 'pdfium_git': 'https://pdfium.googlesource.com', 'android_ndk_revision': '26d93ec07f3ce2ec2cdfeae1b21ee6f12ff868d8', 'build_revision': 'fc826e6c8785c5bf8eefdd9cdf147adba3f97ff9', 'buildtools_revision': 'f90f6a5af3e8cf843395bfe6243cf606f71b5344', 'catapult_revision': '0cf3924bab2c2f66a412edda35f6e3572bd57623', 'clang_revision': '4db585405687222660050d58eb12784fe0852884', 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', 'freetype_revision': 'bec14f688925467be708f01378fbbf82e6b19b42', 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', 'icu_revision': '08cb956852a5ccdba7f9c941728bb833529ba3c6', 'instrumented_lib_revision': '644afd349826cb68204226a16c38bde13abe9c3c', 'jinja2_revision': 'd34383206fa42d52faa10bb9931d6d538f3a57e0', 'jpeg_turbo_revision': '7260e4d8b8e1e40b17f03fafdf1cd83296900f76', 'markupsafe_revision': '8f45f5cfa0009d2a70589bcda0349b8cb2b72783', 'pdfium_tests_revision': '3d6228da656a3974d72223a702e6804df494703e', 'skia_revision': 'e0e20755f6c09b71038ced2bf4a00b4c4593f504', 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', 'trace_event_revision': '06294c8a4a6f744ef284cd63cfe54dbf61eea290', 'v8_revision': '4931eb42e8a934941dc60d8f7dc510c08d7bc2c6', 'yasm_source_revision': 'b98114e18d8b9b84586b10d24353ab8616d4c5fc', 'zlib_revision': '718f686437b89038ac83525f4f1b1888aadd9bfc', } 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'), "testing/gmock": Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), "testing/gtest": Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), "third_party/freetype/src": Var('chromium_git') + '/chromium/src/third_party/freetype2.git@' + Var('freetype_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'), # 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. '+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' ], }, { # Downloads the current stable linux sysroot to build/linux/ if needed. # This sysroot updates at about the same rate that the chrome build deps # change. 'name': 'sysroot', 'pattern': '.', 'action': ['python', 'pdfium/build/linux/sysroot_scripts/install-sysroot.py', '--running-as-hook'], }, { # Update the Windows toolchain if necessary. 'name': 'win_toolchain', 'pattern': '.', 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], }, { # Update the Mac toolchain if necessary. 'name': 'mac_toolchain', 'pattern': '.', 'action': ['python', 'pdfium/build/mac_toolchain.py'], }, { # Pull sanitizer-instrumented third-party libraries if requested via # GYP_DEFINES. 'name': 'instrumented_libraries', 'pattern': '\\.sha1', 'action': ['python', 'pdfium/third_party/instrumented_libraries/scripts/download_binaries.py'], }, ]