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

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: rebase 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') | no next file with comments »
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 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s", 8 "sourceforge_url": "http://%(repo)s.svn.sourceforge.net/svnroot/%(repo)s",
9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", 9 "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk",
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk",
(...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 } 553 }
554 554
555 555
556 include_rules = [ 556 include_rules = [
557 # Everybody can use some things. 557 # Everybody can use some things.
558 "+base", 558 "+base",
559 "+build", 559 "+build",
560 "+googleurl", 560 "+googleurl",
561 "+ipc", 561 "+ipc",
562 562
563 # Everybody can use headers generated by tools/generate_library_loader.
564 "+library_loaders",
565
563 # For now, we allow ICU to be included by specifying "unicode/...", although 566 # For now, we allow ICU to be included by specifying "unicode/...", although
564 # this should probably change. 567 # this should probably change.
565 "+unicode", 568 "+unicode",
566 "+testing", 569 "+testing",
567 ] 570 ]
568 571
569 572
570 # checkdeps.py shouldn't check include paths for files in these dirs: 573 # checkdeps.py shouldn't check include paths for files in these dirs:
571 skip_child_includes = [ 574 skip_child_includes = [
572 "breakpad", 575 "breakpad",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 # A change to a .gyp, .gypi, or to GYP itself should run the generator. 625 # A change to a .gyp, .gypi, or to GYP itself should run the generator.
623 "pattern": ".", 626 "pattern": ".",
624 "action": ["python", "src/build/gyp_chromium"], 627 "action": ["python", "src/build/gyp_chromium"],
625 }, 628 },
626 { 629 {
627 # Check for landmines (reasons to clobber the build). 630 # Check for landmines (reasons to clobber the build).
628 "pattern": ".", 631 "pattern": ".",
629 "action": ["python", "src/build/landmines.py"], 632 "action": ["python", "src/build/landmines.py"],
630 }, 633 },
631 ] 634 ]
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698