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

Side by Side Diff: DEPS

Issue 11415138: Linux: create a library loader code generator for dlopen and use it for libpci. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | build/linux/system.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # When adding a new dependency, please update the top-level .gitignore file 1 # When adding a new dependency, please update the top-level .gitignore file
2 # to list the dependency's destination directory. 2 # to list the dependency's destination directory.
3 3
4 vars = { 4 vars = {
5 # Use this googlecode_url variable only if there is an internal mirror for it. 5 # Use this googlecode_url variable only if there is an internal mirror for it.
6 # If you do not know, use the full path while defining your new deps entry. 6 # If you do not know, use the full path while defining your new deps entry.
7 "googlecode_url": "http://%s.googlecode.com/svn", 7 "googlecode_url": "http://%s.googlecode.com/svn",
8 "googlecode_git_url": "https://code.google.com/p%s", 8 "googlecode_git_url": "https://code.google.com/p%s",
9 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 9 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
10 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 10 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 # Everybody can use some things. 564 # Everybody can use some things.
565 "+base", 565 "+base",
566 "+build", 566 "+build",
567 "+googleurl", 567 "+googleurl",
568 "+ipc", 568 "+ipc",
569 569
570 # For now, we allow ICU to be included by specifying "unicode/...", although 570 # For now, we allow ICU to be included by specifying "unicode/...", although
571 # this should probably change. 571 # this should probably change.
572 "+unicode", 572 "+unicode",
573 "+testing", 573 "+testing",
574
575 # Everybody can use headers generated by tools/generate_library_loader.
576 "+library_loaders",
574 ] 577 ]
575 578
576 579
577 # checkdeps.py shouldn't check include paths for files in these dirs: 580 # checkdeps.py shouldn't check include paths for files in these dirs:
578 skip_child_includes = [ 581 skip_child_includes = [
579 "breakpad", 582 "breakpad",
580 "chrome_frame", 583 "chrome_frame",
581 "delegate_execute", 584 "delegate_execute",
582 "metro_driver", 585 "metro_driver",
583 "native_client_sdk", 586 "native_client_sdk",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 632 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
630 "pattern": ".", 633 "pattern": ".",
631 "action": ["python", "src/build/gyp_chromium"], 634 "action": ["python", "src/build/gyp_chromium"],
632 }, 635 },
633 { 636 {
634 # Check for landmines (reasons to clobber the build). 637 # Check for landmines (reasons to clobber the build).
635 "pattern": ".", 638 "pattern": ".",
636 "action": ["python", "src/build/landmines.py"], 639 "action": ["python", "src/build/landmines.py"],
637 }, 640 },
638 ] 641 ]
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | build/linux/system.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698