Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: Source/bindings/bindings.gypi

Issue 143313002: Implement URLSearchParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More tests + ref count unattached URLSearchParams objects Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'bindings_dir': ['.'], 3 'bindings_dir': ['.'],
4 'bindings_files': [ 4 'bindings_files': [
5 'v8/ActiveDOMCallback.cpp', 5 'v8/ActiveDOMCallback.cpp',
6 'v8/ActiveDOMCallback.h', 6 'v8/ActiveDOMCallback.h',
7 'v8/ArrayValue.cpp', 7 'v8/ArrayValue.cpp',
8 'v8/ArrayValue.h', 8 'v8/ArrayValue.h',
9 'v8/BindingSecurity.cpp', 9 'v8/BindingSecurity.cpp',
10 'v8/BindingSecurity.h', 10 'v8/BindingSecurity.h',
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 'v8/custom/V8SQLResultSetRowListCustom.cpp', 215 'v8/custom/V8SQLResultSetRowListCustom.cpp',
216 'v8/custom/V8SQLTransactionCustom.cpp', 216 'v8/custom/V8SQLTransactionCustom.cpp',
217 'v8/custom/V8SQLTransactionSyncCustom.cpp', 217 'v8/custom/V8SQLTransactionSyncCustom.cpp',
218 'v8/custom/V8SVGElementCustom.cpp', 218 'v8/custom/V8SVGElementCustom.cpp',
219 'v8/custom/V8SVGPathSegCustom.cpp', 219 'v8/custom/V8SVGPathSegCustom.cpp',
220 'v8/custom/V8StyleSheetCustom.cpp', 220 'v8/custom/V8StyleSheetCustom.cpp',
221 'v8/custom/V8TextCustom.cpp', 221 'v8/custom/V8TextCustom.cpp',
222 'v8/custom/V8TextTrackCueCustom.cpp', 222 'v8/custom/V8TextTrackCueCustom.cpp',
223 'v8/custom/V8TrackEventCustom.cpp', 223 'v8/custom/V8TrackEventCustom.cpp',
224 'v8/custom/V8TypedArrayCustom.h', 224 'v8/custom/V8TypedArrayCustom.h',
225 'v8/custom/V8URLSearchParamsCustom.cpp',
225 'v8/custom/V8Uint8ArrayCustom.h', 226 'v8/custom/V8Uint8ArrayCustom.h',
226 'v8/custom/V8Uint8ClampedArrayCustom.h', 227 'v8/custom/V8Uint8ClampedArrayCustom.h',
227 'v8/custom/V8Uint16ArrayCustom.h', 228 'v8/custom/V8Uint16ArrayCustom.h',
228 'v8/custom/V8Uint32ArrayCustom.h', 229 'v8/custom/V8Uint32ArrayCustom.h',
229 'v8/custom/V8WebGLRenderingContextCustom.cpp', 230 'v8/custom/V8WebGLRenderingContextCustom.cpp',
230 'v8/custom/V8WebKitPointCustom.cpp', 231 'v8/custom/V8WebKitPointCustom.cpp',
231 'v8/custom/V8WindowCustom.cpp', 232 'v8/custom/V8WindowCustom.cpp',
232 'v8/custom/V8WorkerGlobalScopeCustom.cpp', 233 'v8/custom/V8WorkerGlobalScopeCustom.cpp',
233 'v8/custom/V8WorkerCryptoCustom.cpp', 234 'v8/custom/V8WorkerCryptoCustom.cpp',
234 'v8/custom/V8WorkerCustom.cpp', 235 'v8/custom/V8WorkerCustom.cpp',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 5.cpp', 268 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 5.cpp',
268 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 6.cpp', 269 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 6.cpp',
269 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 7.cpp', 270 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 7.cpp',
270 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 8.cpp', 271 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 8.cpp',
271 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 9.cpp', 272 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8DerivedSources1 9.cpp',
272 ], 273 ],
273 }], 274 }],
274 ], 275 ],
275 }, 276 },
276 } 277 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698