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 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
518 | 518 |
519 "src/third_party/WebKit/Tools/gdb": | 519 "src/third_party/WebKit/Tools/gdb": |
520 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), | 520 Var("webkit_trunk") + "/Tools/gdb@" + Var("webkit_revision"), |
521 | 521 |
522 "src/third_party/gold": | 522 "src/third_party/gold": |
523 "/trunk/deps/third_party/gold@149858", | 523 "/trunk/deps/third_party/gold@149858", |
524 | 524 |
525 "src/third_party/libmtp": | 525 "src/third_party/libmtp": |
526 "/trunk/deps/third_party/libmtp@160216", | 526 "/trunk/deps/third_party/libmtp@160216", |
527 | 527 |
528 "src/third_party/cros_dbus_cplusplus/source": | |
Ryan Sleevi
2012/10/16 17:49:44
Perhaps clarify the intended platforms (see line 5
Lei Zhang
2012/10/16 18:53:17
Done.
| |
529 Var("chromiumos_git") + "/third_party/dbus-cplusplus.git" + | |
530 "@5e8f6d9db5c2abfb91d91f751184f25bb5cd0900", | |
531 | |
528 # For Linux and Chromium OS. | 532 # For Linux and Chromium OS. |
529 "src/third_party/cros_system_api": | 533 "src/third_party/cros_system_api": |
530 Var("chromiumos_git") + "/platform/system_api.git" + | 534 Var("chromiumos_git") + "/platform/system_api.git" + |
531 "@572f3ee95be807777dced75795eb916ce53ac3b9", | 535 "@572f3ee95be807777dced75795eb916ce53ac3b9", |
532 }, | 536 }, |
533 "android": { | 537 "android": { |
534 "src/third_party/freetype": | 538 "src/third_party/freetype": |
535 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + | 539 Var("chromium_git") + "/chromium/src/third_party/freetype.git" + |
536 "@41c2c4116acca09389cc5fe2ea393eaada546422", | 540 "@41c2c4116acca09389cc5fe2ea393eaada546422", |
537 | 541 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
609 "pattern": ".", | 613 "pattern": ".", |
610 "action": ["python", "src/build/util/lastchange.py", | 614 "action": ["python", "src/build/util/lastchange.py", |
611 "-o", "src/build/util/LASTCHANGE"], | 615 "-o", "src/build/util/LASTCHANGE"], |
612 }, | 616 }, |
613 { | 617 { |
614 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 618 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
615 "pattern": ".", | 619 "pattern": ".", |
616 "action": ["python", "src/build/gyp_chromium"], | 620 "action": ["python", "src/build/gyp_chromium"], |
617 }, | 621 }, |
618 ] | 622 ] |
OLD | NEW |