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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 (Var("googlecode_url") % "trace-viewer") + "/trunk@57", | 93 (Var("googlecode_url") % "trace-viewer") + "/trunk@57", |
94 | 94 |
95 # Note that this is *not* where we check out WebKit -- this just | 95 # Note that this is *not* where we check out WebKit -- this just |
96 # puts some extra files into place for the real WebKit checkout to | 96 # puts some extra files into place for the real WebKit checkout to |
97 # happen. See lines mentioning "webkit_revision" for the real | 97 # happen. See lines mentioning "webkit_revision" for the real |
98 # WebKit checkout. | 98 # WebKit checkout. |
99 "src/third_party/WebKit": | 99 "src/third_party/WebKit": |
100 "/trunk/deps/third_party/WebKit@76115", | 100 "/trunk/deps/third_party/WebKit@76115", |
101 | 101 |
102 "src/third_party/icu": | 102 "src/third_party/icu": |
103 "/trunk/deps/third_party/icu46@145521", | 103 "/trunk/deps/third_party/icu46@145871", |
104 | 104 |
105 "src/third_party/libexif/sources": | 105 "src/third_party/libexif/sources": |
106 "/trunk/deps/third_party/libexif/sources@141967", | 106 "/trunk/deps/third_party/libexif/sources@141967", |
107 | 107 |
108 "src/third_party/hunspell": | 108 "src/third_party/hunspell": |
109 "/trunk/deps/third_party/hunspell@132738", | 109 "/trunk/deps/third_party/hunspell@132738", |
110 | 110 |
111 "src/third_party/hunspell_dictionaries": | 111 "src/third_party/hunspell_dictionaries": |
112 "/trunk/deps/third_party/hunspell_dictionaries@138928", | 112 "/trunk/deps/third_party/hunspell_dictionaries@138928", |
113 | 113 |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
556 "pattern": ".", | 556 "pattern": ".", |
557 "action": ["python", "src/build/util/lastchange.py", | 557 "action": ["python", "src/build/util/lastchange.py", |
558 "-o", "src/build/util/LASTCHANGE"], | 558 "-o", "src/build/util/LASTCHANGE"], |
559 }, | 559 }, |
560 { | 560 { |
561 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 561 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
562 "pattern": ".", | 562 "pattern": ".", |
563 "action": ["python", "src/build/gyp_chromium"], | 563 "action": ["python", "src/build/gyp_chromium"], |
564 }, | 564 }, |
565 ] | 565 ] |
OLD | NEW |