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://src.chromium.org/blink/trunk", | 9 "webkit_trunk": "http://src.chromium.org/blink/trunk", |
10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", | 10 "nacl_trunk": "http://src.chromium.org/native_client/trunk", |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "src/testing/gtest": | 72 "src/testing/gtest": |
73 (Var("googlecode_url") % "googletest") + "/trunk@629", | 73 (Var("googlecode_url") % "googletest") + "/trunk@629", |
74 | 74 |
75 "src/testing/gmock": | 75 "src/testing/gmock": |
76 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 76 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
77 | 77 |
78 "src/third_party/angle": | 78 "src/third_party/angle": |
79 (Var("googlecode_url") % "angleproject") + "/trunk@2040", | 79 (Var("googlecode_url") % "angleproject") + "/trunk@2040", |
80 | 80 |
81 "src/third_party/trace-viewer": | 81 "src/third_party/trace-viewer": |
82 (Var("googlecode_url") % "trace-viewer") + "/trunk@245", | 82 (Var("googlecode_url") % "trace-viewer") + "/trunk@251", |
83 | 83 |
84 # Note that this is *not* where we check out WebKit -- this just | 84 # Note that this is *not* where we check out WebKit -- this just |
85 # puts some extra files into place for the real WebKit checkout to | 85 # puts some extra files into place for the real WebKit checkout to |
86 # happen. See lines mentioning "webkit_revision" for the real | 86 # happen. See lines mentioning "webkit_revision" for the real |
87 # WebKit checkout. | 87 # WebKit checkout. |
88 "src/third_party/WebKit": | 88 "src/third_party/WebKit": |
89 "/trunk/deps/third_party/WebKit@76115", | 89 "/trunk/deps/third_party/WebKit@76115", |
90 | 90 |
91 "src/third_party/icu": | 91 "src/third_party/icu": |
92 "/trunk/deps/third_party/icu46@182486", | 92 "/trunk/deps/third_party/icu46@182486", |
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
705 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 705 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
706 "pattern": ".", | 706 "pattern": ".", |
707 "action": ["python", "src/build/gyp_chromium"], | 707 "action": ["python", "src/build/gyp_chromium"], |
708 }, | 708 }, |
709 { | 709 { |
710 # Check for landmines (reasons to clobber the build). | 710 # Check for landmines (reasons to clobber the build). |
711 "pattern": ".", | 711 "pattern": ".", |
712 "action": ["python", "src/build/landmines.py"], | 712 "action": ["python", "src/build/landmines.py"], |
713 }, | 713 }, |
714 ] | 714 ] |
OLD | NEW |