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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
59 | 59 |
60 "src/sdch/open-vcdiff": | 60 "src/sdch/open-vcdiff": |
61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", | 61 (Var("googlecode_url") % "open-vcdiff") + "/trunk@42", |
62 | 62 |
63 "src/testing/gtest": | 63 "src/testing/gtest": |
64 (Var("googlecode_url") % "googletest") + "/trunk@629", | 64 (Var("googlecode_url") % "googletest") + "/trunk@629", |
65 | 65 |
66 "src/testing/gmock": | 66 "src/testing/gmock": |
67 (Var("googlecode_url") % "googlemock") + "/trunk@410", | 67 (Var("googlecode_url") % "googlemock") + "/trunk@410", |
68 | 68 |
69 # TODO(apatrick): Remove dependency on old DX9 version of ANGLE when | |
70 # transition to new DX11 version is complete. | |
69 "src/third_party/angle": | 71 "src/third_party/angle": |
70 (Var("googlecode_url") % "angleproject") + "/trunk@2249", | 72 (Var("googlecode_url") % "angleproject") + "/trunk@2249", |
71 | 73 |
74 "src/third_party/angle_dx11": | |
75 "https://code.google.com/p/angle-test-temp.git@f3af62480245fca864dc262f13ce0 5d3038dcfe1", | |
Ken Russell (switch to Gerrit)
2013/06/15 01:07:19
See my other comment about updating checklicenses.
| |
76 | |
72 "src/third_party/trace-viewer": | 77 "src/third_party/trace-viewer": |
73 (Var("googlecode_url") % "trace-viewer") + "/trunk@579", | 78 (Var("googlecode_url") % "trace-viewer") + "/trunk@579", |
74 | 79 |
75 "src/third_party/WebKit": | 80 "src/third_party/WebKit": |
76 Var("webkit_trunk") + "@" + Var("webkit_revision"), | 81 Var("webkit_trunk") + "@" + Var("webkit_revision"), |
77 | 82 |
78 "src/third_party/icu": | 83 "src/third_party/icu": |
79 "/trunk/deps/third_party/icu46@199252", | 84 "/trunk/deps/third_party/icu46@199252", |
80 | 85 |
81 "src/third_party/libexif/sources": | 86 "src/third_party/libexif/sources": |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
676 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 681 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
677 "pattern": ".", | 682 "pattern": ".", |
678 "action": ["python", "src/build/gyp_chromium"], | 683 "action": ["python", "src/build/gyp_chromium"], |
679 }, | 684 }, |
680 { | 685 { |
681 # Check for landmines (reasons to clobber the build). | 686 # Check for landmines (reasons to clobber the build). |
682 "pattern": ".", | 687 "pattern": ".", |
683 "action": ["python", "src/build/landmines.py"], | 688 "action": ["python", "src/build/landmines.py"], |
684 }, | 689 }, |
685 ] | 690 ] |
OLD | NEW |