| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', | 78 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 79 # Three lines of non-changing comments so that | 79 # Three lines of non-changing comments so that |
| 80 # the commit queue can handle CLs rolling lss | 80 # the commit queue can handle CLs rolling lss |
| 81 # and whatever else without interference from each other. | 81 # and whatever else without interference from each other. |
| 82 'lss_revision': '4fc942258fe5509549333b9487ec018e3c8c5b10', | 82 'lss_revision': '4fc942258fe5509549333b9487ec018e3c8c5b10', |
| 83 # Three lines of non-changing comments so that | 83 # Three lines of non-changing comments so that |
| 84 # the commit queue can handle CLs rolling NaCl | 84 # the commit queue can handle CLs rolling NaCl |
| 85 # and whatever else without interference from each other. | 85 # and whatever else without interference from each other. |
| 86 'nacl_revision': '7965517f3877641df646f0b4823920e24e8ea113', | 86 'nacl_revision': '7965517f3877641df646f0b4823920e24e8ea113', |
| 87 # Three lines of non-changing comments so that | 87 # Three lines of non-changing comments so that |
| 88 # the commit queue can handle CLs rolling dEQP |
| 89 # and whatever else without interference from each other. |
| 90 'deqp_revision': 'cc0ded6c77267bbb14d21aac358fc5d9690c07f8', |
| 91 'deqp_url': 'https://android.googlesource.com/platform/external/deqp', |
| 92 # Three lines of non-changing comments so that |
| 88 # the commit queue can handle CLs rolling freetype-android | 93 # the commit queue can handle CLs rolling freetype-android |
| 89 # and whatever else without interference from each other. | 94 # and whatever else without interference from each other. |
| 90 'freetype_android_revision': 'a512b0fe7a8d9db0e5aa9c0a4db1e92cb861722d', | 95 'freetype_android_revision': 'a512b0fe7a8d9db0e5aa9c0a4db1e92cb861722d', |
| 91 # Three lines of non-changing comments so that | 96 # Three lines of non-changing comments so that |
| 92 # the commit queue can handle CLs rolling catapult | 97 # the commit queue can handle CLs rolling catapult |
| 93 # and whatever else without interference from each other. | 98 # and whatever else without interference from each other. |
| 94 'catapult_revision': 'aac9bda5ff292fdd66e6a548836ce9777fa73055', | 99 'catapult_revision': 'aac9bda5ff292fdd66e6a548836ce9777fa73055', |
| 95 # Three lines of non-changing comments so that | 100 # Three lines of non-changing comments so that |
| 96 # the commit queue can handle CLs rolling libFuzzer | 101 # the commit queue can handle CLs rolling libFuzzer |
| 97 # and whatever else without interference from each other. | 102 # and whatever else without interference from each other. |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 'src/third_party/mingw-w64/mingw/bin': | 319 'src/third_party/mingw-w64/mingw/bin': |
| 315 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', | 320 Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin
.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
| 316 | 321 |
| 317 # Dependencies used by libjpeg-turbo | 322 # Dependencies used by libjpeg-turbo |
| 318 'src/third_party/yasm/binaries': | 323 'src/third_party/yasm/binaries': |
| 319 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', | 324 Var('chromium_git') + '/chromium/deps/yasm/binaries.git' + '@' + '52f9b3f4b
0aa06da24ef8b123058bb61ee468881', |
| 320 | 325 |
| 321 # Binaries for nacl sdk. | 326 # Binaries for nacl sdk. |
| 322 'src/third_party/nacl_sdk_binaries': | 327 'src/third_party/nacl_sdk_binaries': |
| 323 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', | 328 Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759df
ca03bdc774da7ecbf974f6e2b84f43699a5', |
| 329 |
| 330 # ANGLE uses dEQP for GPU testing |
| 331 'src/third_party/deqp/src': |
| 332 Var('deqp_url') + '@' + Var('deqp_revision'), |
| 324 }, | 333 }, |
| 325 'ios': { | 334 'ios': { |
| 326 'src/ios/third_party/earl_grey/src': | 335 'src/ios/third_party/earl_grey/src': |
| 327 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'f
fdbbb7e9e0a3c617d9f110ef752dbd2dc09c919', | 336 Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'f
fdbbb7e9e0a3c617d9f110ef752dbd2dc09c919', |
| 328 | 337 |
| 329 'src/ios/third_party/fishhook/src': | 338 'src/ios/third_party/fishhook/src': |
| 330 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', | 339 Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' +
'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 331 | 340 |
| 332 'src/ios/third_party/gcdwebserver/src': | 341 'src/ios/third_party/gcdwebserver/src': |
| 333 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', | 342 Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@
' + '3d5fd0b8281a7224c057deb2d17709b5bea64836', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 388 'src/third_party/pyelftools': | 397 'src/third_party/pyelftools': |
| 389 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', | 398 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b
3e610c86fcadb837d252c794cb5e8008826ae', |
| 390 | 399 |
| 391 'src/third_party/liblouis/src': | 400 'src/third_party/liblouis/src': |
| 392 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 401 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
| 393 | 402 |
| 394 # Used for embedded builds. CrOS & Linux use the system version. | 403 # Used for embedded builds. CrOS & Linux use the system version. |
| 395 'src/third_party/fontconfig/src': | 404 'src/third_party/fontconfig/src': |
| 396 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 405 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 397 | 406 |
| 407 # ANGLE uses dEQP for GPU testing |
| 408 'src/third_party/deqp/src': |
| 409 Var('deqp_url') + '@' + Var('deqp_revision'), |
| 410 |
| 398 # Graphics buffer allocator for Chrome OS. | 411 # Graphics buffer allocator for Chrome OS. |
| 399 'src/third_party/minigbm/src': | 412 'src/third_party/minigbm/src': |
| 400 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '1e2293992
28ac107e8ae0f73a466e3ea17fe5839', | 413 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '1e2293992
28ac107e8ae0f73a466e3ea17fe5839', |
| 401 | 414 |
| 402 # Display server protocol for Linux. | 415 # Display server protocol for Linux. |
| 403 'src/third_party/wayland/src': | 416 'src/third_party/wayland/src': |
| 404 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', | 417 Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/waylan
d.git' + '@' + '7ed00c1de77afbab23f4908fbd9d60ec070c209b', |
| 405 | 418 |
| 406 # Wayland protocols that add functionality not available in the core protoco
l. | 419 # Wayland protocols that add functionality not available in the core protoco
l. |
| 407 'src/third_party/wayland-protocols/src': | 420 'src/third_party/wayland-protocols/src': |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 833 'src/build/android/download_doclava.py', | 846 'src/build/android/download_doclava.py', |
| 834 ], | 847 ], |
| 835 }, | 848 }, |
| 836 { | 849 { |
| 837 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 850 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 838 'name': 'gyp', | 851 'name': 'gyp', |
| 839 'pattern': '.', | 852 'pattern': '.', |
| 840 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 853 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 841 }, | 854 }, |
| 842 ] | 855 ] |
| 843 | |
| 844 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | |
| 845 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | |
| OLD | NEW |