Changeset 100184 in webkit
- Timestamp:
- Nov 14, 2011, 1:45:52 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/build-webkit (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r100174 r100184 1 2011-11-14 Julien Chaffraix <jchaffraix@webkit.org> 2 3 [Chromium] build-webkit silently drops the features flags 4 https://bugs.webkit.org/show_bug.cgi?id=72293 5 6 Reviewed by Tony Chang. 7 8 Chromium still ignores @features but now we give a warning! 9 10 * Scripts/build-webkit: Check if one of the features is different 11 from the default and print a warning in this case. 12 1 13 2011-11-14 David Kilzer <ddkilzer@apple.com> 2 14 -
trunk/Tools/Scripts/build-webkit
r100130 r100184 595 595 596 596 if (isChromium()) { 597 # Currently chromium does not honour the features passed to build-webkit. 598 # Until this is solved, we issue a warning about that. 599 foreach (@features) { 600 if (${$_->{value}} ne $_->{default}) { 601 print "\n"; 602 print "===========================================================\n"; 603 print " Chromium does not honor the features passed to build-webkit.\n"; 604 print " The preferred way is to set up your overrides in ~/.gyp/include.gypi.\n"; 605 print " See https://trac.webkit.org/wiki/Chromium#Buildingwithfeaturedefines\n"; 606 print " on how to do that.\n"; 607 print "===========================================================\n"; 608 last; 609 } 610 } 611 597 612 @options = @ARGV; 598 613 # Chromium doesn't build by project directories.
Note:
See TracChangeset
for help on using the changeset viewer.