OLD | NEW |
1 # Copyright (C) 2012 Google Inc. All rights reserved. | 1 # Copyright (C) 2012 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # 1. Redistributions of source code must retain the above copyright | 7 # 1. Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # 2. Redistributions in binary form must reproduce the above copyright | 9 # 2. Redistributions in binary form must reproduce the above copyright |
10 # notice, this list of conditions and the following disclaimer in the | 10 # notice, this list of conditions and the following disclaimer in the |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 | 271 |
272 { option => "geolocation", desc => "Toggle Geolocation support", | 272 { option => "geolocation", desc => "Toggle Geolocation support", |
273 define => "ENABLE_GEOLOCATION", default => (isAppleWebKit() || isGtk() ||
isBlackBerry()), value => \$geolocationSupport }, | 273 define => "ENABLE_GEOLOCATION", default => (isAppleWebKit() || isGtk() ||
isBlackBerry()), value => \$geolocationSupport }, |
274 | 274 |
275 { option => "high-dpi-canvas", desc => "Toggle High DPI Canvas support", | 275 { option => "high-dpi-canvas", desc => "Toggle High DPI Canvas support", |
276 define => "ENABLE_HIGH_DPI_CANVAS", default => (isAppleWebKit()), value =>
\$highDPICanvasSupport }, | 276 define => "ENABLE_HIGH_DPI_CANVAS", default => (isAppleWebKit()), value =>
\$highDPICanvasSupport }, |
277 | 277 |
278 { option => "icon-database", desc => "Toggle Icondatabase support", | 278 { option => "icon-database", desc => "Toggle Icondatabase support", |
279 define => "ENABLE_ICONDATABASE", default => 1, value => \$icondatabaseSupp
ort }, | 279 define => "ENABLE_ICONDATABASE", default => 1, value => \$icondatabaseSupp
ort }, |
280 | 280 |
281 { option => "iframe-seamless", desc => "Toggle iframe seamless attribute sup
port", | |
282 define => "ENABLE_IFRAME_SEAMLESS", default => 1, value => \$iframeSeamles
sSupport }, | |
283 | |
284 { option => "indexed-database", desc => "Toggle Indexed Database support", | 281 { option => "indexed-database", desc => "Toggle Indexed Database support", |
285 define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexe
dDatabaseSupport }, | 282 define => "ENABLE_INDEXED_DATABASE", default => isGtk(), value => \$indexe
dDatabaseSupport }, |
286 | 283 |
287 { option => "input-speech", desc => "Toggle Input Speech support", | 284 { option => "input-speech", desc => "Toggle Input Speech support", |
288 define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSuppo
rt }, | 285 define => "ENABLE_INPUT_SPEECH", default => 0, value => \$inputSpeechSuppo
rt }, |
289 | 286 |
290 { option => "input-type-color", desc => "Toggle Input Type Color support", | 287 { option => "input-type-color", desc => "Toggle Input Type Color support", |
291 define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl()
|| isQt()), value => \$inputTypeColorSupport }, | 288 define => "ENABLE_INPUT_TYPE_COLOR", default => (isBlackBerry() || isEfl()
|| isQt()), value => \$inputTypeColorSupport }, |
292 | 289 |
293 { option => "input-type-date", desc => "Toggle Input Type Date support", | 290 { option => "input-type-date", desc => "Toggle Input Type Date support", |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 { option => "xslt", desc => "Toggle XSLT support", | 476 { option => "xslt", desc => "Toggle XSLT support", |
480 define => "ENABLE_XSLT", default => 1, value => \$xsltSupport }, | 477 define => "ENABLE_XSLT", default => 1, value => \$xsltSupport }, |
481 ); | 478 ); |
482 | 479 |
483 sub getFeatureOptionList() | 480 sub getFeatureOptionList() |
484 { | 481 { |
485 return @features; | 482 return @features; |
486 } | 483 } |
487 | 484 |
488 1; | 485 1; |
OLD | NEW |