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