OLD | NEW |
1 vars = { | 1 vars = { |
2 "webkit_trunk": | 2 "webkit_trunk": |
3 "http://svn.webkit.org/repository/webkit/trunk", | 3 "http://svn.webkit.org/repository/webkit/trunk", |
4 "webkit_revision": "48734", | 4 "webkit_revision": "48734", |
5 "ffmpeg_revision": "26428", | 5 "ffmpeg_revision": "26428", |
6 } | 6 } |
7 | 7 |
8 deps = { | 8 deps = { |
9 "src/breakpad/src": | 9 "src/breakpad/src": |
10 "http://google-breakpad.googlecode.com/svn/trunk/src@391", | 10 "http://google-breakpad.googlecode.com/svn/trunk/src@391", |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 "/trunk/deps/third_party/cygwin@11984", | 99 "/trunk/deps/third_party/cygwin@11984", |
100 | 100 |
101 "src/third_party/python_24": | 101 "src/third_party/python_24": |
102 "/trunk/deps/third_party/python_24@22967", | 102 "/trunk/deps/third_party/python_24@22967", |
103 | 103 |
104 "src/third_party/ffmpeg/binaries/chromium/win/ia32": | 104 "src/third_party/ffmpeg/binaries/chromium/win/ia32": |
105 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), | 105 "/trunk/deps/third_party/ffmpeg/binaries/win@" + Var("ffmpeg_revision"), |
106 | 106 |
107 "src/third_party/pthreads-win32": | 107 "src/third_party/pthreads-win32": |
108 "/trunk/deps/third_party/pthreads-win32@26716", | 108 "/trunk/deps/third_party/pthreads-win32@26716", |
| 109 |
| 110 # Chrome Frame related deps |
| 111 "src/third_party/xulrunner-sdk": |
| 112 "/trunk/deps/third_party/xulrunner-sdk@17887", |
| 113 "src/chrome_frame/tools/test/reference_build/chrome": |
| 114 "/trunk/deps/reference_builds/chrome_frame@27181", |
109 }, | 115 }, |
110 "mac": { | 116 "mac": { |
111 "src/third_party/GTM": | 117 "src/third_party/GTM": |
112 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@223", | 118 "http://google-toolbox-for-mac.googlecode.com/svn/trunk@223", |
113 "src/third_party/pdfsqueeze": | 119 "src/third_party/pdfsqueeze": |
114 "http://pdfsqueeze.googlecode.com/svn/trunk@2", | 120 "http://pdfsqueeze.googlecode.com/svn/trunk@2", |
115 "src/third_party/WebKit/WebKit/mac": | 121 "src/third_party/WebKit/WebKit/mac": |
116 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), | 122 Var("webkit_trunk") + "/WebKit/mac@" + Var("webkit_revision"), |
117 "src/third_party/WebKit/WebKitLibraries": | 123 "src/third_party/WebKit/WebKitLibraries": |
118 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), | 124 Var("webkit_trunk") + "/WebKitLibraries@" + Var("webkit_revision"), |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 188 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
183 "pattern": ".", | 189 "pattern": ".", |
184 "action": ["python", "src/build/gyp_chromium"], | 190 "action": ["python", "src/build/gyp_chromium"], |
185 }, | 191 }, |
186 { | 192 { |
187 # Workaround IncrediBuild problem. http://crbug.com/17706. | 193 # Workaround IncrediBuild problem. http://crbug.com/17706. |
188 "pattern": "\\.grd$", | 194 "pattern": "\\.grd$", |
189 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], | 195 "action": ["python", "src/build/win/clobber_generated_headers.py", "$matchin
g_files"], |
190 }, | 196 }, |
191 ] | 197 ] |
OLD | NEW |