OLD | NEW |
---|---|
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
380 'src/ios/third_party/material_text_accessibility_ios/src': | 380 'src/ios/third_party/material_text_accessibility_ios/src': |
381 Var('chromium_git') + '/external/github.com/material-foundation/material-t ext-accessibility-ios.git' + '@' + '7340b22cc589101ba0b11516afe4f3a733041951', | 381 Var('chromium_git') + '/external/github.com/material-foundation/material-t ext-accessibility-ios.git' + '@' + '7340b22cc589101ba0b11516afe4f3a733041951', |
382 | 382 |
383 'src/ios/third_party/ochamcrest/src': | 383 'src/ios/third_party/ochamcrest/src': |
384 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', | 384 Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + 'd7ee4ecfb6bd13c3c8d364682b6228ccd86e1e1a', |
385 | 385 |
386 'src/third_party/google_toolbox_for_mac/src': | 386 'src/third_party/google_toolbox_for_mac/src': |
387 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'), | 387 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'), |
388 }, | 388 }, |
389 'mac': { | 389 'mac': { |
390 'src/third_party/freetype/src': | |
391 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va r('freetype_revision'), | |
392 | |
390 'src/chrome/installer/mac/third_party/xz/xz': | 393 'src/chrome/installer/mac/third_party/xz/xz': |
391 Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb 2641376bce7cdbc7284f7', | 394 Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb 2641376bce7cdbc7284f7', |
392 | 395 |
393 'src/third_party/freetype/src': | 396 'src/third_party/freetype/src': |
bungeman-chromium
2017/04/26 14:22:19
Looks like we're already doing this in this 'mac'
Dirk Pranke
2017/04/26 19:20:49
+1 :)
| |
394 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va r('freetype_revision'), | 397 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Va r('freetype_revision'), |
395 | 398 |
396 'src/third_party/google_toolbox_for_mac/src': | 399 'src/third_party/google_toolbox_for_mac/src': |
397 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'), | 400 Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac. git' + '@' + Var('google_toolbox_for_mac_revision'), |
398 | 401 |
399 'src/third_party/lighttpd': | 402 'src/third_party/lighttpd': |
400 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_ revision'), | 403 Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_ revision'), |
401 }, | 404 }, |
402 'unix': { | 405 'unix': { |
403 # Linux, really. | 406 # Linux, really. |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1155 recursedeps = [ | 1158 recursedeps = [ |
1156 # buildtools provides clang_format, libc++, and libc++abi | 1159 # buildtools provides clang_format, libc++, and libc++abi |
1157 'src/buildtools', | 1160 'src/buildtools', |
1158 # android_tools manages the NDK. | 1161 # android_tools manages the NDK. |
1159 'src/third_party/android_tools', | 1162 'src/third_party/android_tools', |
1160 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1163 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1161 ("src/third_party/angle", "DEPS.chromium"), | 1164 ("src/third_party/angle", "DEPS.chromium"), |
1162 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. | 1165 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. |
1163 ("src/third_party/swiftshader", "DEPS"), | 1166 ("src/third_party/swiftshader", "DEPS"), |
1164 ] | 1167 ] |
OLD | NEW |