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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 | 459 |
460 "src/third_party/WebKit/Tools/gdb": | 460 "src/third_party/WebKit/Tools/gdb": |
461 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), | 461 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), |
462 | 462 |
463 "src/third_party/gold": | 463 "src/third_party/gold": |
464 "/trunk/deps/third_party/gold@124239", | 464 "/trunk/deps/third_party/gold@124239", |
465 | 465 |
466 # For Chromium OS. | 466 # For Chromium OS. |
467 "src/third_party/cros_system_api": | 467 "src/third_party/cros_system_api": |
468 Var("chromiumos_git") + "/platform/system_api.git" + | 468 Var("chromiumos_git") + "/platform/system_api.git" + |
469 "@da5b4f13d8f80f70909d474f1b6814df1a97302d", | 469 "@715c98d7d0ca9a1f0576fca77cb4a49498d303ae", |
470 }, | 470 }, |
471 "android": { | 471 "android": { |
472 "src/third_party/freetype": | 472 "src/third_party/freetype": |
473 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | 473 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + |
474 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7", | 474 "@1f74e4e7ad3ca4163b4578fc30da26a165dd55e7", |
475 | 475 |
476 "src/third_party/aosp": | 476 "src/third_party/aosp": |
477 "/trunk/deps/third_party/aosp@148330", | 477 "/trunk/deps/third_party/aosp@148330", |
478 }, | 478 }, |
479 } | 479 } |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 "pattern": ".", | 567 "pattern": ".", |
568 "action": ["python", "src/build/util/lastchange.py", | 568 "action": ["python", "src/build/util/lastchange.py", |
569 "-o", "src/build/util/LASTCHANGE"], | 569 "-o", "src/build/util/LASTCHANGE"], |
570 }, | 570 }, |
571 { | 571 { |
572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 572 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
573 "pattern": ".", | 573 "pattern": ".", |
574 "action": ["python", "src/build/gyp_chromium"], | 574 "action": ["python", "src/build/gyp_chromium"], |
575 }, | 575 }, |
576 ] | 576 ] |
OLD | NEW |