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

Side by Side Diff: Tools/Scripts/webkitperl/FeatureList.pm

Issue 13674022: Remove MEDIA_SOURCE feature define. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@blink-master
Patch Set: Rebase Created 7 years, 8 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
« no previous file with comments | « Source/WebKit/chromium/src/WebRuntimeFeatures.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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;
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebRuntimeFeatures.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698