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 | |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 7 | 'build_revision': 'c557a3544d31513394681f40c8c2512cf7ddcb9e', |
| 8 | 'buildtools_revision': '309289315767f615256eada4653b4917cf148c8e', |
dsinclair | 76c5379 | 2016-04-26 11:05:26 -0700 | [diff] [blame] | 9 | 'clang_revision': 'b6f620b311665e2d96d0921833f54295b9bbf925', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 10 | 'cygwin_revision': 'c89e446b273697fadf3a10ff1007a97c0b7de6df', |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 11 | 'gen_library_loader_revision': '916d4acd8b2cde67a390737dfba90b3c37de23a1', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 12 | 'gmock_revision': '29763965ab52f24565299976b936d1265cb6a271', |
| 13 | 'gtest_revision': '8245545b6dc9c4703e6496d1efd19e975ad2b038', |
thestig | f1accf6 | 2016-04-12 16:54:56 -0700 | [diff] [blame] | 14 | 'icu_revision': 'c291cde264469b20ca969ce8832088acb21e0c48', |
tsepez | d7725bb | 2016-05-04 16:20:35 -0700 | [diff] [blame] | 15 | 'pdfium_tests_revision': '6c769320872e6ca82da4adaec1a497237f71b543', |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 16 | 'skia_revision': '6f47dbaff54a7705ef3e98f1f65c765e56fd9bd0', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 17 | 'trace_event_revision': 'd83d44b13d07c2fd0a40101a7deef9b93b841732', |
dsinclair | 76c5379 | 2016-04-26 11:05:26 -0700 | [diff] [blame] | 18 | 'v8_revision': '5cd0d8f27e3f740179a8a3de7b9d2c0cfae7afb9', |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 19 | } |
| 20 | |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 21 | deps = { |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 22 | "build": |
| 23 | Var('chromium_git') + "/chromium/src/build.git@" + Var('build_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 24 | |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 25 | "buildtools": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 26 | Var('chromium_git') + "/chromium/buildtools.git@" + Var('buildtools_revision'), |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 27 | |
Tom Sepez | 9519ab2 | 2015-03-16 15:27:19 -0700 | [diff] [blame] | 28 | "testing/corpus": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 29 | Var('pdfium_git') + "/pdfium_tests@" + Var('pdfium_tests_revision'), |
Tom Sepez | 9519ab2 | 2015-03-16 15:27:19 -0700 | [diff] [blame] | 30 | |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 31 | "testing/gmock": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 32 | Var('chromium_git') + "/external/googlemock.git@" + Var('gmock_revision'), |
Tom Sepez | a310e00 | 2015-02-27 13:03:07 -0800 | [diff] [blame] | 33 | |
Tom Sepez | 22ee248 | 2015-01-07 10:04:16 -0800 | [diff] [blame] | 34 | "testing/gtest": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 35 | Var('chromium_git') + "/external/googletest.git@" + Var('gtest_revision'), |
| 36 | |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 37 | "third_party/icu": |
| 38 | Var('chromium_git') + "/chromium/deps/icu.git@" + Var('icu_revision'), |
| 39 | |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 40 | "third_party/skia": |
| 41 | Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
Tom Sepez | 22ee248 | 2015-01-07 10:04:16 -0800 | [diff] [blame] | 42 | |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 43 | "tools/clang": |
weili | b34d72b | 2016-04-18 12:24:36 -0700 | [diff] [blame] | 44 | Var('chromium_git') + "/chromium/src/tools/clang@" + Var('clang_revision'), |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 45 | |
dsinclair | 11988d7 | 2016-05-04 10:17:00 -0700 | [diff] [blame] | 46 | "tools/generate_library_loader": |
| 47 | Var('chromium_git') + "/chromium/src/tools/generate_library_loader@" + |
| 48 | Var('gen_library_loader_revision'), |
| 49 | |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 50 | "tools/gyp": |
| 51 | Var('chromium_git') + "/external/gyp", |
| 52 | |
John Abd-El-Malek | fe45372 | 2014-10-16 15:32:26 -0700 | [diff] [blame] | 53 | "v8": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 54 | Var('chromium_git') + "/v8/v8.git@" + Var('v8_revision'), |
Lei Zhang | 0ef109f | 2016-01-11 12:24:16 -0800 | [diff] [blame] | 55 | |
| 56 | "v8/base/trace_event/common": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 57 | Var('chromium_git') + "/chromium/src/base/trace_event/common.git@" + Var('trace_event_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | deps_os = { |
| 61 | "win": { |
John Abd-El-Malek | fe45372 | 2014-10-16 15:32:26 -0700 | [diff] [blame] | 62 | "v8/third_party/cygwin": |
Dan Sinclair | a03c343 | 2016-03-16 15:35:20 -0400 | [diff] [blame] | 63 | Var('chromium_git') + "/chromium/deps/cygwin@" + Var('cygwin_revision'), |
Aneesh Mulye | 2ee9c3a | 2014-08-06 18:11:02 -0700 | [diff] [blame] | 64 | }, |
| 65 | } |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 66 | |
| 67 | include_rules = [ |
Lei Zhang | 8fec3e4 | 2015-11-04 15:32:02 -0800 | [diff] [blame] | 68 | # Basic stuff that everyone can use. |
| 69 | # Note: public is not here because core cannot depend on public. |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 70 | '+testing', |
| 71 | '+third_party/base', |
Tom Sepez | 4c0e275 | 2015-06-05 13:46:08 -0700 | [diff] [blame] | 72 | ] |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 73 | |
weili | 90c964f | 2016-04-22 15:25:14 -0700 | [diff] [blame] | 74 | specific_include_rules = { |
| 75 | # Allow embedder tests to use public APIs. |
| 76 | "(.*embeddertest\.cpp)": [ |
| 77 | "+public", |
| 78 | ] |
| 79 | } |
| 80 | |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 81 | hooks = [ |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 82 | # Pull GN binaries. This needs to be before running GYP below. |
| 83 | { |
dsinclair | b4e8708 | 2016-04-20 12:18:16 -0700 | [diff] [blame] | 84 | 'name': 'gn_win', |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 85 | 'action': [ 'download_from_google_storage', |
| 86 | '--no_resume', |
| 87 | '--platform=win32', |
| 88 | '--no_auth', |
| 89 | '--bucket', 'chromium-gn', |
| 90 | '-s', 'pdfium/buildtools/win/gn.exe.sha1', |
| 91 | ], |
| 92 | }, |
| 93 | { |
| 94 | 'name': 'gn_mac', |
| 95 | 'pattern': '.', |
| 96 | 'action': [ 'download_from_google_storage', |
| 97 | '--no_resume', |
| 98 | '--platform=darwin', |
| 99 | '--no_auth', |
| 100 | '--bucket', 'chromium-gn', |
| 101 | '-s', 'pdfium/buildtools/mac/gn.sha1', |
| 102 | ], |
| 103 | }, |
| 104 | { |
| 105 | 'name': 'gn_linux64', |
| 106 | 'pattern': '.', |
| 107 | 'action': [ 'download_from_google_storage', |
| 108 | '--no_resume', |
| 109 | '--platform=linux*', |
| 110 | '--no_auth', |
| 111 | '--bucket', 'chromium-gn', |
| 112 | '-s', 'pdfium/buildtools/linux64/gn.sha1', |
| 113 | ], |
| 114 | }, |
| 115 | { |
| 116 | # Downloads the current stable linux sysroot to build/linux/ if needed. |
| 117 | # This sysroot updates at about the same rate that the chrome build deps |
| 118 | # change. This script is a no-op except for linux users who are doing |
| 119 | # official chrome builds or cross compiling. |
| 120 | 'name': 'sysroot', |
| 121 | 'pattern': '.', |
| 122 | 'action': ['python', |
| 123 | 'pdfium/build/linux/sysroot_scripts/install-sysroot.py', |
| 124 | '--running-as-hook' |
| 125 | ], |
| 126 | }, |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 127 | { |
| 128 | # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 129 | 'name': 'gyp', |
| 130 | 'pattern': '.', |
dsinclair | c37b04e | 2016-04-19 11:04:01 -0700 | [diff] [blame] | 131 | 'action': ['python', 'pdfium/build_gyp/gyp_pdfium'], |
Tom Sepez | 0c1bd7c | 2015-06-17 15:56:43 -0700 | [diff] [blame] | 132 | }, |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 133 | # Pull clang-format binaries using checked-in hashes. |
| 134 | { |
| 135 | 'name': 'clang_format_win', |
| 136 | 'pattern': '.', |
| 137 | 'action': [ 'download_from_google_storage', |
| 138 | '--no_resume', |
| 139 | '--platform=win32', |
| 140 | '--no_auth', |
| 141 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 142 | '-s', 'pdfium/buildtools/win/clang-format.exe.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 143 | ], |
| 144 | }, |
| 145 | { |
| 146 | 'name': 'clang_format_mac', |
| 147 | 'pattern': '.', |
| 148 | 'action': [ 'download_from_google_storage', |
| 149 | '--no_resume', |
| 150 | '--platform=darwin', |
| 151 | '--no_auth', |
| 152 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 153 | '-s', 'pdfium/buildtools/mac/clang-format.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 154 | ], |
| 155 | }, |
| 156 | { |
| 157 | 'name': 'clang_format_linux', |
| 158 | 'pattern': '.', |
| 159 | 'action': [ 'download_from_google_storage', |
| 160 | '--no_resume', |
| 161 | '--platform=linux*', |
| 162 | '--no_auth', |
| 163 | '--bucket', 'chromium-clang-format', |
Oliver Chang | 5a21e14 | 2015-10-21 15:19:20 -0700 | [diff] [blame] | 164 | '-s', 'pdfium/buildtools/linux64/clang-format.sha1', |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 165 | ], |
| 166 | }, |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 167 | { |
| 168 | # Pull clang if needed or requested via GYP_DEFINES. |
| 169 | 'name': 'clang', |
| 170 | 'pattern': '.', |
dsinclair | 685bb88 | 2016-04-20 07:32:39 -0700 | [diff] [blame] | 171 | 'action': ['python', |
| 172 | 'pdfium/tools/clang/scripts/update.py', |
| 173 | '--if-needed' |
| 174 | ], |
Oliver Chang | afaa98e | 2015-10-21 15:29:47 -0700 | [diff] [blame] | 175 | }, |
weili | 9a1b665 | 2016-04-28 15:26:45 -0700 | [diff] [blame] | 176 | { |
| 177 | # Update the Windows toolchain if necessary. |
| 178 | 'name': 'win_toolchain', |
| 179 | 'pattern': '.', |
weili | 5593bb8 | 2016-04-29 20:14:55 -0700 | [diff] [blame] | 180 | 'action': ['python', 'pdfium/build/vs_toolchain.py', 'update'], |
weili | 9a1b665 | 2016-04-28 15:26:45 -0700 | [diff] [blame] | 181 | }, |
Tom Sepez | e9446f8 | 2015-08-13 15:51:43 -0700 | [diff] [blame] | 182 | ] |