Lei Zhang | e4bf834 | 2015-10-21 17:11:04 -0700 | [diff] [blame] | 1 | use_relative_paths = True |
| 2 | |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 3 | vars = { |
| 4 | 'chromium_git': 'https://chromium.googlesource.com', |
| 5 | 'pdfium_git': 'https://pdfium.googlesource.com', |
| 6 | |
thestig | 50feafc | 2016-11-09 23:45:50 -0800 | [diff] [blame] | 7 | 'android_ndk_revision': '26d93ec07f3ce2ec2cdfeae1b21ee6f12ff868d8', |
jbudorick | 841a85b | 2016-11-23 13:33:28 -0800 | [diff] [blame] | 8 | 'build_revision': 'acf607f7d345915ea2ecca208bc516677d298463', |
thestig | 3873f30 | 2016-09-28 17:39:26 -0700 | [diff] [blame] | 9 | 'buildtools_revision': '5fd66957f08bb752dca714a591c84587c9d70762', |
jbudorick | 2430b30 | 2016-11-23 15:43:09 -0800 | [diff] [blame] | 10 | 'catapult_revision': '86352b966b0245d6883e5f7df27687856978b6d7', |
thestig | 106e9a3 | 2016-11-23 16:42:10 -0800 | [diff] [blame] | 11 | 'clang_revision': '0a306690ccb471f75990b488b8b61cabbcca3011', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 12 | 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 13 | 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 14 | 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', |
| 15 | 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', |
thestig | 71e6e35 | 2016-08-26 09:40:19 -0700 | [diff] [blame] | 16 | 'icu_revision': '2341038bf72869a5683a893a2b319a48ffec7f62', |
weili | 62f3673 | 2016-10-14 16:59:40 -0700 | [diff] [blame] | 17 | 'instrumented_lib_revision': '45f5814b1543e41ea0be54c771e3840ea52cca4a', |
thestig | 3c3094d | 2016-11-19 22:58:12 -0800 | [diff] [blame] | 18 | 'pdfium_tests_revision': '943683e198317881f2111e9c55c0bae34b529a33', |
caryclark | fea997e | 2016-10-31 08:23:25 -0700 | [diff] [blame] | 19 | 'skia_revision': 'a9fd106d0c4dd5449c607add0716db7bbd81bc73', |
dsinclair | fb96900 | 2016-05-31 12:55:32 -0700 | [diff] [blame] | 20 | 'tools_memory_revision': '427f10475e1a8d72424c29d00bf689122b738e5d', |
thestig | 08959c6 | 2016-11-10 13:19:23 -0800 | [diff] [blame] | 21 | 'trace_event_revision': '06294c8a4a6f744ef284cd63cfe54dbf61eea290', |
thestig | 8edd6d7 | 2016-11-21 17:27:14 -0800 | [diff] [blame] | 22 | 'v8_revision': '8e0dcfc4ac75c0bef9063bd5dec4dafaa3409b6d', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 23 | } |
| 24 | |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 25 | deps = { |
thestig | 5fec597 | 2016-08-30 06:39:40 -0700 | [diff] [blame] | 26 | "base/trace_event/common": |
| 27 | Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + |
| 28 | Var('trace_event_revision'), |
| 29 | |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 30 | "build": |
| 31 | Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 32 | |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 33 | "buildtools": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 34 | Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision'), |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 35 | |
Tom Sepez | 9519ab2 | 2015-03-16 15:27:19 -0700 | [diff] [blame] | 36 | "testing/corpus": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 37 | Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), |
Tom Sepez | 9519ab2 | 2015-03-16 15:27:19 -0700 | [diff] [blame] | 38 | |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 39 | "testing/gmock": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 40 | Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 41 | |
Tom Sepez | 22ee248 | 2015-01-07 10:04:16 -0800 | [diff] [blame] | 42 | "testing/gtest": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 43 | Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), |
| 44 | |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 45 | "third_party/icu": |
| 46 | Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), |
| 47 | |
weili | 62f3673 | 2016-10-14 16:59:40 -0700 | [diff] [blame] | 48 | "third_party/instrumented_libraries": |
| 49 | Var('chromium_git') + "/chromium/src/third_party/instrumented_libraries.git@" + Var('instrumented_lib_revision'), |
| 50 | |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 51 | "third_party/skia": |
| 52 | Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
Tom Sepez | 22ee248 | 2015-01-07 10:04:16 -0800 | [diff] [blame] | 53 | |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 54 | "tools/clang": |
weili | b34d72b | 2016-04-18 12:24:36 -0700 | [diff] [blame] | 55 | Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 56 | |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 57 | "tools/generate_library_loader": |
| 58 | Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" + |
| 59 | Var('gen_library_loader_revision'), |
| 60 | |
thestig | b7fb1fd | 2016-08-26 14:39:31 -0700 | [diff] [blame] | 61 | # TODO(GYP): Remove this when no tools rely on GYP anymore. |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 62 | "tools/gyp": |
thestig | 2798a7a | 2016-07-01 20:26:54 -0700 | [diff] [blame] | 63 | Var('chromium_git') + '/external/gyp.git' + '@' + 'c61b0b35c8396bfd59efc6cfc11401d912b0f510', |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 64 | |
dsinclair | fb96900 | 2016-05-31 12:55:32 -0700 | [diff] [blame] | 65 | "tools/memory": |
| 66 | Var('chromium_git') + "/chromium/src/tools/memory@" + |
| 67 | Var('tools_memory_revision'), |
| 68 | |
John Abd-El-Malek | fe45372 | 2014-10-16 15:32:26 -0700 | [diff] [blame] | 69 | "v8": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 70 | Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | deps_os = { |
jbudorick | 7f3a15f | 2016-06-10 06:28:40 -0700 | [diff] [blame] | 74 | "android": { |
| 75 | "third_party/android_ndk": |
| 76 | Var('chromium_git') + "/android_ndk.git@" + Var('android_ndk_revision'), |
| 77 | "third_party/catapult": |
| 78 | Var('chromium_git') + "/external/github.com/catapult-project/catapult.git@" + Var('catapult_revision'), |
| 79 | }, |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 80 | "win": { |
John Abd-El-Malek | fe45372 | 2014-10-16 15:32:26 -0700 | [diff] [blame] | 81 | "v8/third_party/cygwin": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 82 | Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 83 | }, |
| 84 | } |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 85 | |
thestig | 3873f30 | 2016-09-28 17:39:26 -0700 | [diff] [blame] | 86 | recursedeps = [ |
| 87 | # buildtools provides clang_format, libc++, and libc++abi |
| 88 | 'buildtools', |
| 89 | ] |
| 90 | |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 91 | include_rules = [ |
Lei Zhang | 8fec3e4 | 2015-11-04 15:32:02 -0800 | [diff] [blame] | 92 | # Basic stuff that everyone can use. |
| 93 | # Note: public is not here because core cannot depend on public. |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 94 | '+testing', |
| 95 | '+third_party/base', |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 96 | ] |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 97 | |
weili | 90c964f | 2016-04-22 15:25:14 -0700 | [diff] [blame] | 98 | specific_include_rules = { |
| 99 | # Allow embedder tests to use public APIs. |
| 100 | "(.*embeddertest\.cpp)": [ |
| 101 | "+public", |
| 102 | ] |
| 103 | } |
| 104 | |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 105 | hooks = [ |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 106 | # Pull GN binaries. This needs to be before running GYP below. |
| 107 | { |
dsinclair | b4e8708 | 2016-04-20 12:18:16 -0700 | [diff] [blame] | 108 | 'name': 'gn_win', |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 109 | 'action': [ 'download_from_google_storage', |
| 110 | '--no_resume', |
| 111 | '--platform=win32', |
| 112 | '--no_auth', |
| 113 | '--bucket', 'chromium-gn', |
| 114 | '-s', 'pdfium/buildtools/win/gn.exe.sha1', |
| 115 | ], |
| 116 | }, |
| 117 | { |
| 118 | 'name': 'gn_mac', |
| 119 | 'pattern': '.', |
| 120 | 'action': [ 'download_from_google_storage', |
| 121 | '--no_resume', |
| 122 | '--platform=darwin', |
| 123 | '--no_auth', |
| 124 | '--bucket', 'chromium-gn', |
| 125 | '-s', 'pdfium/buildtools/mac/gn.sha1', |
| 126 | ], |
| 127 | }, |
| 128 | { |
| 129 | 'name': 'gn_linux64', |
| 130 | 'pattern': '.', |
| 131 | 'action': [ 'download_from_google_storage', |
| 132 | '--no_resume', |
| 133 | '--platform=linux*', |
| 134 | '--no_auth', |
| 135 | '--bucket', 'chromium-gn', |
| 136 | '-s', 'pdfium/buildtools/linux64/gn.sha1', |
| 137 | ], |
| 138 | }, |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 139 | # Pull clang-format binaries using checked-in hashes. |
| 140 | { |
| 141 | 'name': 'clang_format_win', |
| 142 | 'pattern': '.', |
| 143 | 'action': [ 'download_from_google_storage', |
| 144 | '--no_resume', |
| 145 | '--platform=win32', |
| 146 | '--no_auth', |
| 147 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 148 | '-s', 'pdfium/buildtools/win/clang-format.exe.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 149 | ], |
| 150 | }, |
| 151 | { |
| 152 | 'name': 'clang_format_mac', |
| 153 | 'pattern': '.', |
| 154 | 'action': [ 'download_from_google_storage', |
| 155 | '--no_resume', |
| 156 | '--platform=darwin', |
| 157 | '--no_auth', |
| 158 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 159 | '-s', 'pdfium/buildtools/mac/clang-format.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 160 | ], |
| 161 | }, |
| 162 | { |
| 163 | 'name': 'clang_format_linux', |
| 164 | 'pattern': '.', |
| 165 | 'action': [ 'download_from_google_storage', |
| 166 | '--no_resume', |
| 167 | '--platform=linux*', |
| 168 | '--no_auth', |
| 169 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 170 | '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 171 | ], |
| 172 | }, |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 173 | { |
dsinclair | b12fbdde | 2016-09-19 10:45:14 -0700 | [diff] [blame] | 174 | # Pull clang |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 175 | 'name': 'clang', |
| 176 | 'pattern': '.', |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 177 | 'action': ['python', |
dsinclair | b12fbdde | 2016-09-19 10:45:14 -0700 | [diff] [blame] | 178 | 'pdfium/tools/clang/scripts/update.py' |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 179 | ], |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 180 | }, |
weili | 9a1b665 | 2016-04-28 15:26:45 -0700 | [diff] [blame] | 181 | { |
| 182 | # Update the Windows toolchain if necessary. |
| 183 | 'name': 'win_toolchain', |
| 184 | 'pattern': '.', |
weili | 5593bb8 | 2016-04-29 20:14:55 -0700 | [diff] [blame] | 185 | 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], |
weili | 9a1b665 | 2016-04-28 15:26:45 -0700 | [diff] [blame] | 186 | }, |
weili | 62f3673 | 2016-10-14 16:59:40 -0700 | [diff] [blame] | 187 | { |
weili | 9053f19 | 2016-11-18 14:03:49 -0800 | [diff] [blame] | 188 | # Update the Mac toolchain if necessary. |
| 189 | 'name': 'mac_toolchain', |
| 190 | 'pattern': '.', |
| 191 | 'action': ['python', 'pdfium/build/mac_toolchain.py'], |
| 192 | }, |
| 193 | { |
weili | 62f3673 | 2016-10-14 16:59:40 -0700 | [diff] [blame] | 194 | # Pull sanitizer-instrumented third-party libraries if requested via |
| 195 | # GYP_DEFINES. |
| 196 | 'name': 'instrumented_libraries', |
| 197 | 'pattern': '\\.sha1', |
| 198 | 'action': ['python', 'pdfium/third_party/instrumented_libraries/scripts/download_binaries.py'], |
| 199 | }, |
| 200 | |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 201 | ] |