OLD | NEW |
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 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 "src/third_party/cros_dbus_cplusplus/source": | 529 "src/third_party/cros_dbus_cplusplus/source": |
530 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | 530 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + |
531 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | 531 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", |
532 | 532 |
533 # For Linux and Chromium OS. | 533 # For Linux and Chromium OS. |
534 "src/third_party/cros_system_api": | 534 "src/third_party/cros_system_api": |
535 Var("chromiumos_git") + "/platform/system_api.git" + | 535 Var("chromiumos_git") + "/platform/system_api.git" + |
536 "@59dafd34a6eb3b6eee63b59f7cc6cd01e4fda770", | 536 "@59dafd34a6eb3b6eee63b59f7cc6cd01e4fda770", |
537 }, | 537 }, |
538 "android": { | 538 "android": { |
| 539 "src/third_party/freetype": |
| 540 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + |
| 541 "@96551feab72aac26836e9aaf4fae0962d39d5ab0", |
| 542 |
| 543 "src/third_party/aosp": |
| 544 "/trunk/deps/third_party/aosp@148330", |
| 545 |
539 "src/third_party/android_tools": | 546 "src/third_party/android_tools": |
540 Var("chromium_git") + "/android_tools.git" + | 547 Var("chromium_git") + "/android_tools.git" + |
541 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", | 548 "@1cef853f682461dbb27a4992d3d8b5bc1f69232b", |
542 | 549 |
543 "src/third_party/aosp": | |
544 "/trunk/deps/third_party/aosp@148330", | |
545 | |
546 "src/third_party/apache-mime4j": | |
547 "/trunk/deps/third_party/apache-mime4j@170888", | |
548 | |
549 "src/third_party/findbugs": | 550 "src/third_party/findbugs": |
550 "/trunk/deps/third_party/findbugs@163586", | 551 "/trunk/deps/third_party/findbugs@163586", |
551 | 552 |
552 "src/third_party/freetype": | |
553 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | |
554 "@96551feab72aac26836e9aaf4fae0962d39d5ab0", | |
555 | |
556 "src/third_party/guava/src": | 553 "src/third_party/guava/src": |
557 Var("chromium_git") + "/external/guava-libraries.git" + | 554 Var("chromium_git") + '/external/guava-libraries.git@c523556ab7d0f05afadeb
d20e7768d4c16af8771', |
558 "@c523556ab7d0f05afadebd20e7768d4c16af8771", | |
559 | |
560 "src/third_party/httpcomponents-client": | |
561 "/trunk/deps/third_party/httpcomponents-client@170888", | |
562 | |
563 "src/third_party/httpcomponents-core": | |
564 "/trunk/deps/third_party/httpcomponents-core@170888", | |
565 | |
566 "src/third_party/jarjar": | |
567 "/trunk/deps/third_party/jarjar@170888", | |
568 | 555 |
569 "src/third_party/jsr-305/src": | 556 "src/third_party/jsr-305/src": |
570 (Var("googlecode_url") % "jsr-305") + "/trunk@51", | 557 (Var("googlecode_url") % "jsr-305") + "/trunk@51", |
571 }, | 558 }, |
572 } | 559 } |
573 | 560 |
574 | 561 |
575 include_rules = [ | 562 include_rules = [ |
576 # Everybody can use some things. | 563 # Everybody can use some things. |
577 "+base", | 564 "+base", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
642 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 629 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
643 "pattern": ".", | 630 "pattern": ".", |
644 "action": ["python", "src/build/gyp_chromium"], | 631 "action": ["python", "src/build/gyp_chromium"], |
645 }, | 632 }, |
646 { | 633 { |
647 # Check for landmines (reasons to clobber the build). | 634 # Check for landmines (reasons to clobber the build). |
648 "pattern": ".", | 635 "pattern": ".", |
649 "action": ["python", "src/build/landmines.py"], | 636 "action": ["python", "src/build/landmines.py"], |
650 }, | 637 }, |
651 ] | 638 ] |
OLD | NEW |