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

Side by Side Diff: DEPS

Issue 209853003: Adding binutils as a DEPS to allow DebugFission on Ubuntu Precise when compiling with clang. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using seperate release dirs and same detect_host_arch as common.gypi Created 6 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 | third_party/binutils/.gitignore » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This file is automatically processed to create .DEPS.git which is the file 1 # This file is automatically processed to create .DEPS.git which is the file
2 # that gclient uses under git. 2 # that gclient uses under git.
3 # 3 #
4 # See http://code.google.com/p/chromium/wiki/UsingGit 4 # See http://code.google.com/p/chromium/wiki/UsingGit
5 # 5 #
6 # To test manually, run: 6 # To test manually, run:
7 # python tools/deps2git/deps2git.py -o .DEPS.git 7 # python tools/deps2git/deps2git.py -o .DEPS.git
8 # gclient runhooks 8 # gclient runhooks
9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by 9 # DO NOT CHECK IN CHANGES TO .DEPS.git. It will be automatically updated by
10 # a bot when you modify this one. 10 # a bot when you modify this one.
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 "src/third_party/xdg-utils": 459 "src/third_party/xdg-utils":
460 "/trunk/deps/third_party/xdg-utils@203785", 460 "/trunk/deps/third_party/xdg-utils@203785",
461 461
462 "src/third_party/swig/linux": 462 "src/third_party/swig/linux":
463 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"), 463 "/trunk/deps/third_party/swig/linux@" + Var("swig_revision"),
464 464
465 "src/third_party/lss": 465 "src/third_party/lss":
466 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" + 466 ((Var("googlecode_url") % "linux-syscall-support") + "/trunk/lss@" +
467 Var("lss_revision")), 467 Var("lss_revision")),
468 468
469 # FIXME(mithro): src/third_party/binutils is replacing src/third_party/gold.
470 # Remove gold when binutils is being used correctly.
469 "src/third_party/gold": 471 "src/third_party/gold":
470 "/trunk/deps/third_party/gold@228995", 472 "/trunk/deps/third_party/gold@228995",
471 473
472 "src/third_party/libmtp": 474 "src/third_party/libmtp":
473 "/trunk/deps/third_party/libmtp@206535", 475 "/trunk/deps/third_party/libmtp@206535",
474 476
475 # Used on Linux only. CrOS already has a copy. 477 # Used on Linux only. CrOS already has a copy.
476 "src/third_party/mtpd/source": 478 "src/third_party/mtpd/source":
477 Var("chromiumos_git") + "/platform/mtpd.git" + 479 Var("chromiumos_git") + "/platform/mtpd.git" +
478 "@f9759da3a7cd95080414a7da0d899c47cad794f2", 480 "@f9759da3a7cd95080414a7da0d899c47cad794f2",
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 "name": "clang_format_linux", 738 "name": "clang_format_linux",
737 "pattern": ".", 739 "pattern": ".",
738 "action": [ "download_from_google_storage", 740 "action": [ "download_from_google_storage",
739 "--no_resume", 741 "--no_resume",
740 "--platform=linux*", 742 "--platform=linux*",
741 "--no_auth", 743 "--no_auth",
742 "--bucket", "chromium-clang-format", 744 "--bucket", "chromium-clang-format",
743 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1" , 745 "-s", "src/third_party/clang_format/bin/linux/clang-format.sha1" ,
744 ], 746 ],
745 }, 747 },
748 # Pull binutils for linux, enabled debug fission for faster linking /
749 # debugging when used with clang on Ubuntu Precise.
750 # https://code.google.com/p/chromium/issues/detail?id=352046
751 {
752 "name": "binutils",
753 "pattern": "src/third_party/binutils",
754 "action": [
755 "python",
756 "src/third_party/binutils/download.py",
757 ],
758 },
746 # Pull eu-strip binaries using checked-in hashes. 759 # Pull eu-strip binaries using checked-in hashes.
747 { 760 {
748 "name": "eu-strip", 761 "name": "eu-strip",
749 "pattern": ".", 762 "pattern": ".",
750 "action": [ "download_from_google_storage", 763 "action": [ "download_from_google_storage",
751 "--no_resume", 764 "--no_resume",
752 "--platform=linux*", 765 "--platform=linux*",
753 "--no_auth", 766 "--no_auth",
754 "--bucket", "chromium-eu-strip", 767 "--bucket", "chromium-eu-strip",
755 "-s", "src/build/linux/bin/eu-strip.sha1", 768 "-s", "src/build/linux/bin/eu-strip.sha1",
756 ], 769 ],
757 }, 770 },
758 { 771 {
759 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 772 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
760 "name": "gyp", 773 "name": "gyp",
761 "pattern": ".", 774 "pattern": ".",
762 "action": ["python", "src/build/gyp_chromium"], 775 "action": ["python", "src/build/gyp_chromium"],
763 }, 776 },
764 ] 777 ]
OLDNEW
« no previous file with comments | « no previous file | third_party/binutils/.gitignore » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698