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

Side by Side Diff: DEPS

Issue 2314753002: mac: remove libc++-static 10.6 compatibility hack (Closed)
Patch Set: Created 4 years, 3 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 | build/config/compiler/BUILD.gn » ('j') | build/config/compiler/BUILD.gn » ('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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 'name': 'clang_format_linux', 860 'name': 'clang_format_linux',
861 'pattern': '.', 861 'pattern': '.',
862 'action': [ 'download_from_google_storage', 862 'action': [ 'download_from_google_storage',
863 '--no_resume', 863 '--no_resume',
864 '--platform=linux*', 864 '--platform=linux*',
865 '--no_auth', 865 '--no_auth',
866 '--bucket', 'chromium-clang-format', 866 '--bucket', 'chromium-clang-format',
867 '-s', 'src/buildtools/linux64/clang-format.sha1', 867 '-s', 'src/buildtools/linux64/clang-format.sha1',
868 ], 868 ],
869 }, 869 },
870 # Pull the prebuilt libc++ static library for mac.
871 {
872 'name': 'libcpp_mac',
873 'pattern': '.',
874 'action': [ 'download_from_google_storage',
875 '--no_resume',
876 '--platform=darwin',
877 '--no_auth',
878 '--bucket', 'chromium-libcpp',
879 '-s', 'src/third_party/libc++-static/libc++.a.sha1',
880 ],
881 },
882 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. 870 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
883 { 871 {
884 'name': 'luci-go_win', 872 'name': 'luci-go_win',
885 'pattern': '.', 873 'pattern': '.',
886 'action': [ 'download_from_google_storage', 874 'action': [ 'download_from_google_storage',
887 '--no_resume', 875 '--no_resume',
888 '--platform=win32', 876 '--platform=win32',
889 '--no_auth', 877 '--no_auth',
890 '--bucket', 'chromium-luci', 878 '--bucket', 'chromium-luci',
891 '-d', 'src/tools/luci-go/win64', 879 '-d', 'src/tools/luci-go/win64',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
1020 "--no_auth", 1008 "--no_auth",
1021 "-u", 1009 "-u",
1022 "--bucket", "v8-wasm-asmjs-fuzzer", 1010 "--bucket", "v8-wasm-asmjs-fuzzer",
1023 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1", 1011 "-s", "src/v8/test/fuzzer/wasm_asmjs.tar.gz.sha1",
1024 ], 1012 ],
1025 }, 1013 },
1026 ] 1014 ]
1027 1015
1028 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. 1016 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1029 recursedeps = [("src/third_party/angle", "DEPS.chromium")] 1017 recursedeps = [("src/third_party/angle", "DEPS.chromium")]
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | build/config/compiler/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698