| 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 15 matching lines...) Expand all Loading... |
| 26 # git cl upload | 26 # git cl upload |
| 27 | 27 |
| 28 | 28 |
| 29 vars = { | 29 vars = { |
| 30 # Use this googlecode_url variable only if there is an internal mirror for it. | 30 # Use this googlecode_url variable only if there is an internal mirror for it. |
| 31 # If you do not know, use the full path while defining your new deps entry. | 31 # If you do not know, use the full path while defining your new deps entry. |
| 32 'googlecode_url': 'http://%s.googlecode.com/svn', | 32 'googlecode_url': 'http://%s.googlecode.com/svn', |
| 33 'sourceforge_url': 'http://svn.code.sf.net/p/%(repo)s/code', | 33 'sourceforge_url': 'http://svn.code.sf.net/p/%(repo)s/code', |
| 34 'llvm_url': 'http://src.chromium.org/llvm-project', | 34 'llvm_url': 'http://src.chromium.org/llvm-project', |
| 35 'llvm_git': 'https://llvm.googlesource.com', | 35 'llvm_git': 'https://llvm.googlesource.com', |
| 36 'libcxx_revision': '48198f9110397fff47fe7c37cbfa296be7d44d3d', | |
| 37 'libcxxabi_revision': '4ad1009ab3a59fa7a6896d74d5e4de5885697f95', | |
| 38 'webkit_trunk': 'http://src.chromium.org/blink/trunk', | 36 'webkit_trunk': 'http://src.chromium.org/blink/trunk', |
| 39 'webkit_revision': 'f81976174b3506d4341d35a619282d85bb9778fd', # from svn revi
sion 188121 | 37 'webkit_revision': 'f81976174b3506d4341d35a619282d85bb9778fd', # from svn revi
sion 188121 |
| 40 'chromium_git': 'https://chromium.googlesource.com', | 38 'chromium_git': 'https://chromium.googlesource.com', |
| 41 'chromiumos_git': 'https://chromium.googlesource.com/chromiumos', | 39 'chromiumos_git': 'https://chromium.googlesource.com/chromiumos', |
| 42 'pdfium_git': 'https://pdfium.googlesource.com', | 40 'pdfium_git': 'https://pdfium.googlesource.com', |
| 43 'skia_git': 'https://skia.googlesource.com', | 41 'skia_git': 'https://skia.googlesource.com', |
| 44 'boringssl_git': 'https://boringssl.googlesource.com', | 42 'boringssl_git': 'https://boringssl.googlesource.com', |
| 45 'libvpx_revision': 'd3f3dcefb055656807e8a2f65a322bbb13cd05a4', | 43 'libvpx_revision': 'd3f3dcefb055656807e8a2f65a322bbb13cd05a4', |
| 46 'sfntly_revision': '1bdaae8fc788a5ac8936d68bf24f37d977a13dac', | 44 'sfntly_revision': '1bdaae8fc788a5ac8936d68bf24f37d977a13dac', |
| 47 'skia_revision': 'e34d6bd3e02ee6384f056d11cff8f5bf5e71bb69', | 45 'skia_revision': 'e34d6bd3e02ee6384f056d11cff8f5bf5e71bb69', |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 | 147 |
| 150 'src/third_party/safe_browsing/testing': | 148 'src/third_party/safe_browsing/testing': |
| 151 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', | 149 Var('chromium_git') + '/external/google-safe-browsing/testing.git' + '@' + '
9d7e8064f3ca2e45891470c9b5b1dce54af6a9d6', |
| 152 | 150 |
| 153 'src/third_party/cacheinvalidation/src': | 151 'src/third_party/cacheinvalidation/src': |
| 154 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 | 152 Var('chromium_git') + '/external/google-cache-invalidation-api/src.git' + '@
' + 'c91bd9d9fed06bf440be64f87b94a2effdb32bc4', # from svn revision 341 |
| 155 | 153 |
| 156 'src/third_party/leveldatabase/src': | 154 'src/third_party/leveldatabase/src': |
| 157 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', | 155 Var('chromium_git') + '/external/leveldb.git' + '@' + '251ebf5dc70129ad3c381
93fe6c99a5b0ec6b9fa', |
| 158 | 156 |
| 159 'src/third_party/libc++/trunk': | |
| 160 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), | |
| 161 | |
| 162 'src/third_party/libc++abi/trunk': | |
| 163 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | |
| 164 | |
| 165 'src/third_party/snappy/src': | 157 'src/third_party/snappy/src': |
| 166 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 158 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
| 167 | 159 |
| 168 'src/tools/grit': | 160 'src/tools/grit': |
| 169 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a5890a8118c0c80cc05
60e6d8d5cf65e5d725509', # from svn revision 185 | 161 Var('chromium_git') + '/external/grit-i18n.git' + '@' + 'a5890a8118c0c80cc05
60e6d8d5cf65e5d725509', # from svn revision 185 |
| 170 | 162 |
| 171 'src/tools/gyp': | 163 'src/tools/gyp': |
| 172 Var('chromium_git') + '/external/gyp.git' + '@' + '82b08049cc0b1f9e0bdcc0702
ac6b523360f635f', # from svn revision 2020 | 164 Var('chromium_git') + '/external/gyp.git' + '@' + '82b08049cc0b1f9e0bdcc0702
ac6b523360f635f', # from svn revision 2020 |
| 173 | 165 |
| 174 'src/tools/swarming_client': | 166 'src/tools/swarming_client': |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
| 795 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
| 796 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
| 797 'action': [ | 789 'action': [ |
| 798 'python', | 790 'python', |
| 799 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
| 800 'src/tools', | 792 'src/tools', |
| 801 ], | 793 ], |
| 802 }, | 794 }, |
| 803 ] | 795 ] |
| OLD | NEW |