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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "src/googleurl": | 46 "src/googleurl": |
47 (Var("googlecode_url") % "google-url") + "/trunk@175", | 47 (Var("googlecode_url") % "google-url") + "/trunk@175", |
48 | 48 |
49 "src/sandbox/linux/seccomp-legacy": | 49 "src/sandbox/linux/seccomp-legacy": |
50 (Var("googlecode_url") % "seccompsandbox") + "/trunk@186", | 50 (Var("googlecode_url") % "seccompsandbox") + "/trunk@186", |
51 | 51 |
52 "src/sdch/open-vcdiff": | 52 "src/sdch/open-vcdiff": |
53 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 53 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
54 | 54 |
55 "src/testing/gtest": | 55 "src/testing/gtest": |
56 (Var("googlecode_url") % "googletest") + "/trunk@617", | 56 (Var("googlecode_url") % "googletest") + "/trunk@621", |
57 | 57 |
58 "src/testing/gmock": | 58 "src/testing/gmock": |
59 (Var("googlecode_url") % "googlemock") + "/trunk@405", | 59 (Var("googlecode_url") % "googlemock") + "/trunk@405", |
60 | 60 |
61 "src/third_party/angle": | 61 "src/third_party/angle": |
62 (Var("googlecode_url") % "angleproject") + "/trunk@1243", | 62 (Var("googlecode_url") % "angleproject") + "/trunk@1243", |
63 | 63 |
64 "src/third_party/trace-viewer": | 64 "src/third_party/trace-viewer": |
65 (Var("googlecode_url") % "trace-viewer") + "/trunk@103", | 65 (Var("googlecode_url") % "trace-viewer") + "/trunk@103", |
66 | 66 |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
591 "pattern": ".", | 591 "pattern": ".", |
592 "action": ["python", "src/build/util/lastchange.py", | 592 "action": ["python", "src/build/util/lastchange.py", |
593 "-o", "src/build/util/LASTCHANGE"], | 593 "-o", "src/build/util/LASTCHANGE"], |
594 }, | 594 }, |
595 { | 595 { |
596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 596 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
597 "pattern": ".", | 597 "pattern": ".", |
598 "action": ["python", "src/build/gyp_chromium"], | 598 "action": ["python", "src/build/gyp_chromium"], |
599 }, | 599 }, |
600 ] | 600 ] |
OLD | NEW |