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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 'src/third_party/fontconfig/src': | 472 'src/third_party/fontconfig/src': |
473 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 473 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
474 }, | 474 }, |
475 'android': { | 475 'android': { |
476 'src/third_party/android_protobuf/src': | 476 'src/third_party/android_protobuf/src': |
477 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', | 477 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', |
478 | 478 |
479 # Whenever you roll this please also change frameworks/webview in | 479 # Whenever you roll this please also change frameworks/webview in |
480 # src/android_webview/buildbot/aosp_manifest.xml to point to the same revisi
on. | 480 # src/android_webview/buildbot/aosp_manifest.xml to point to the same revisi
on. |
481 'src/third_party/android_webview_glue/src': | 481 'src/third_party/android_webview_glue/src': |
482 Var('chromium_git') + '/external/android_webview_glue.git' + '@' + '6ec46f2
bd3243d042d9641d7f87863bc20f8c745', | 482 Var('chromium_git') + '/external/android_webview_glue.git' + '@' + '7d62eab
4ca242beacac4471c002e998ef5c218b8', |
483 | 483 |
484 'src/third_party/android_tools': | 484 'src/third_party/android_tools': |
485 Var('chromium_git') + '/android_tools.git' + '@' + 'd2b86205ff973a3844020fe
acb35ca6b1d82efbe', | 485 Var('chromium_git') + '/android_tools.git' + '@' + 'd2b86205ff973a3844020fe
acb35ca6b1d82efbe', |
486 | 486 |
487 'src/third_party/apache-mime4j': | 487 'src/third_party/apache-mime4j': |
488 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 488 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
489 | 489 |
490 'src/third_party/findbugs': | 490 'src/third_party/findbugs': |
491 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', | 491 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', |
492 | 492 |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
800 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
801 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
805 'src/tools', | 805 'src/tools', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |