Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: DEPS

Issue 2790063006: [WIP] Adding Mockito support in Android instrumentation tests (Closed)
Patch Set: disable multidex for debug builds Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | third_party/mockito/proguard.flags » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 482
483 'src/third_party/elfutils/src': 483 'src/third_party/elfutils/src':
484 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5d e4f3760bdcaa3d23d154d7', 484 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5d e4f3760bdcaa3d23d154d7',
485 485
486 'src/third_party/jsr-305/src': 486 'src/third_party/jsr-305/src':
487 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a f6d5df2d3210e3bfc0919', 487 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a f6d5df2d3210e3bfc0919',
488 488
489 'src/third_party/junit/src': 489 'src/third_party/junit/src':
490 Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263c f4d08253a1556e75481', 490 Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263c f4d08253a1556e75481',
491 491
492 'src/third_party/mockito/src':
493 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a d4cf5ea53c69a8a8053780b04b850',
494
495 'src/third_party/netty-tcnative/src': 492 'src/third_party/netty-tcnative/src':
496 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4 efe6fc3f70077f22471e83ffb446', 493 Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4 efe6fc3f70077f22471e83ffb446',
497 494
498 'src/third_party/netty4/src': 495 'src/third_party/netty4/src':
499 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be 19414d0ac81f2ef6ba3c', 496 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be 19414d0ac81f2ef6ba3c',
500 497
501 'src/third_party/robolectric/robolectric': 498 'src/third_party/robolectric/robolectric':
502 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3 371813a676ce06143353e448d', 499 Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3 371813a676ce06143353e448d',
503 500
504 'src/third_party/ub-uiautomator/lib': 501 'src/third_party/ub-uiautomator/lib':
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
784 'name': 'xstream', 781 'name': 'xstream',
785 'pattern': '.', 782 'pattern': '.',
786 'action': ['python', 783 'action': ['python',
787 'src/build/android/update_deps/update_third_party_deps.py', 784 'src/build/android/update_deps/update_third_party_deps.py',
788 'download', 785 'download',
789 '-b', 'chromium-robolectric', 786 '-b', 'chromium-robolectric',
790 '-l', 'third_party/xstream' 787 '-l', 'third_party/xstream'
791 ], 788 ],
792 }, 789 },
793 { 790 {
791 'name': 'mockito',
792 'pattern': '.',
793 'action': ['python',
794 'src/build/android/update_deps/update_third_party_deps.py',
795 'download',
796 '-b', 'chromium-android-tools/mockito',
797 '-l', 'third_party/mockito'
798 ],
799 },
800 {
801 'name': 'android_dalvik_dx',
802 'pattern': '.',
803 'action': ['python',
804 'src/build/android/update_deps/update_third_party_deps.py',
805 'download',
806 '-b', 'chromium-android-tools/android_dalvik_dx',
807 '-l', 'third_party/android_dalvik_dx'
808 ],
809 },
810 {
811 'name': 'android_libcore_dex',
812 'pattern': '.',
813 'action': ['python',
814 'src/build/android/update_deps/update_third_party_deps.py',
815 'download',
816 '-b', 'chromium-android-tools/android_libcore_dex',
817 '-l', 'third_party/android_libcore_dex'
818 ],
819 },
820 {
794 # Downloads the current stable linux sysroot to build/linux/ if needed. 821 # Downloads the current stable linux sysroot to build/linux/ if needed.
795 # This sysroot updates at about the same rate that the chrome build deps 822 # This sysroot updates at about the same rate that the chrome build deps
796 # change. This script is a no-op except for linux users who are doing 823 # change. This script is a no-op except for linux users who are doing
797 # official chrome builds or cross compiling. 824 # official chrome builds or cross compiling.
798 'name': 'sysroot', 825 'name': 'sysroot',
799 'pattern': '.', 826 'pattern': '.',
800 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', 827 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
801 '--running-as-hook'], 828 '--running-as-hook'],
802 }, 829 },
803 { 830 {
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 recursedeps = [ 1174 recursedeps = [
1148 # buildtools provides clang_format, libc++, and libc++abi 1175 # buildtools provides clang_format, libc++, and libc++abi
1149 'src/buildtools', 1176 'src/buildtools',
1150 # android_tools manages the NDK. 1177 # android_tools manages the NDK.
1151 'src/third_party/android_tools', 1178 'src/third_party/android_tools',
1152 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. 1179 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1153 ("src/third_party/angle", "DEPS.chromium"), 1180 ("src/third_party/angle", "DEPS.chromium"),
1154 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. 1181 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero.
1155 ("src/third_party/swiftshader", "DEPS"), 1182 ("src/third_party/swiftshader", "DEPS"),
1156 ] 1183 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | third_party/mockito/proguard.flags » ('J')

Powered by Google App Engine
This is Rietveld 408576698