| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 | 328 |
| 329 { option => "link-prerender", desc => "Toggle Link Prerender support", | 329 { option => "link-prerender", desc => "Toggle Link Prerender support", |
| 330 define => "ENABLE_LINK_PRERENDER", default => 0, value => \$linkPrerenderS
upport }, | 330 define => "ENABLE_LINK_PRERENDER", default => 0, value => \$linkPrerenderS
upport }, |
| 331 | 331 |
| 332 { option => "mathml", desc => "Toggle MathML support", | 332 { option => "mathml", desc => "Toggle MathML support", |
| 333 define => "ENABLE_MATHML", default => !isBlackBerry(), value => \$mathmlSu
pport }, | 333 define => "ENABLE_MATHML", default => !isBlackBerry(), value => \$mathmlSu
pport }, |
| 334 | 334 |
| 335 { option => "media-capture", desc => "Toggle Media Capture support", | 335 { option => "media-capture", desc => "Toggle Media Capture support", |
| 336 define => "ENABLE_MEDIA_CAPTURE", default => isEfl(), value => \$mediaCapt
ureSupport }, | 336 define => "ENABLE_MEDIA_CAPTURE", default => isEfl(), value => \$mediaCapt
ureSupport }, |
| 337 | 337 |
| 338 { option => "media-source", desc => "Toggle Media Source support", | |
| 339 define => "ENABLE_MEDIA_SOURCE", default => 0, value => \$mediaSourceSuppo
rt }, | |
| 340 | |
| 341 { option => "media-statistics", desc => "Toggle Media Statistics support", | 338 { option => "media-statistics", desc => "Toggle Media Statistics support", |
| 342 define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatist
icsSupport }, | 339 define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatist
icsSupport }, |
| 343 | 340 |
| 344 { option => "media-stream", desc => "Toggle Media Stream support", | 341 { option => "media-stream", desc => "Toggle Media Stream support", |
| 345 define => "ENABLE_MEDIA_STREAM", default => (isChromium() || isBlackBerry(
)), value => \$mediaStreamSupport }, | 342 define => "ENABLE_MEDIA_STREAM", default => (isChromium() || isBlackBerry(
)), value => \$mediaStreamSupport }, |
| 346 | 343 |
| 347 { option => "meter-tag", desc => "Toggle Meter Tag support", | 344 { option => "meter-tag", desc => "Toggle Meter Tag support", |
| 348 define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value =>
\$meterTagSupport }, | 345 define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value =>
\$meterTagSupport }, |
| 349 | 346 |
| 350 { option => "mhtml", desc => "Toggle MHTML support", | 347 { option => "mhtml", desc => "Toggle MHTML support", |
| (...skipping 128 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 |