| 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 'name': 'ow2_asm', | 677 'name': 'ow2_asm', |
| 678 'pattern': '.', | 678 'pattern': '.', |
| 679 'action': ['python', | 679 'action': ['python', |
| 680 'src/build/android/update_deps/update_third_party_deps.py', | 680 'src/build/android/update_deps/update_third_party_deps.py', |
| 681 'download', | 681 'download', |
| 682 '-b', 'chromium-ow2-asm', | 682 '-b', 'chromium-ow2-asm', |
| 683 '-l', 'third_party/ow2_asm' | 683 '-l', 'third_party/ow2_asm' |
| 684 ], | 684 ], |
| 685 }, | 685 }, |
| 686 { | 686 { |
| 687 'name': 'retrolambda', |
| 688 'pattern': '.', |
| 689 'action': ['python', |
| 690 'src/build/android/update_deps/update_third_party_deps.py', |
| 691 'download', |
| 692 '-b', 'chromium-android-tools/retrolambda', |
| 693 '-l', 'third_party/retrolambda' |
| 694 ], |
| 695 }, |
| 696 { |
| 687 'name': 'icu4j', | 697 'name': 'icu4j', |
| 688 'pattern': '.', | 698 'pattern': '.', |
| 689 'action': ['python', | 699 'action': ['python', |
| 690 'src/build/android/update_deps/update_third_party_deps.py', | 700 'src/build/android/update_deps/update_third_party_deps.py', |
| 691 'download', | 701 'download', |
| 692 '-b', 'chromium-icu4j', | 702 '-b', 'chromium-icu4j', |
| 693 '-l', 'third_party/icu4j' | 703 '-l', 'third_party/icu4j' |
| 694 ], | 704 ], |
| 695 }, | 705 }, |
| 696 { | 706 { |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1054 ] | 1064 ] |
| 1055 | 1065 |
| 1056 recursedeps = [ | 1066 recursedeps = [ |
| 1057 # buildtools provides clang_format, libc++, and libc++abi | 1067 # buildtools provides clang_format, libc++, and libc++abi |
| 1058 'src/buildtools', | 1068 'src/buildtools', |
| 1059 # android_tools manages the NDK. | 1069 # android_tools manages the NDK. |
| 1060 'src/third_party/android_tools', | 1070 'src/third_party/android_tools', |
| 1061 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1071 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1062 ("src/third_party/angle", "DEPS.chromium"), | 1072 ("src/third_party/angle", "DEPS.chromium"), |
| 1063 ] | 1073 ] |
| OLD | NEW |