| OLD | NEW |
| 1 #!/usr/bin/perl | 1 #!/usr/bin/perl |
| 2 | 2 |
| 3 # Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 # Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions | 6 # modification, are permitted provided that the following conditions |
| 7 # are met: | 7 # are met: |
| 8 # | 8 # |
| 9 # 1. Redistributions of source code must retain the above copyright | 9 # 1. Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 next if $shortName eq "BidiRun.o"; | 108 next if $shortName eq "BidiRun.o"; |
| 109 next if $shortName eq "CachedPage.o"; | 109 next if $shortName eq "CachedPage.o"; |
| 110 next if $shortName eq "CachedResource.o"; | 110 next if $shortName eq "CachedResource.o"; |
| 111 next if $shortName eq "FEGaussianBlur.o"; | 111 next if $shortName eq "FEGaussianBlur.o"; |
| 112 next if $shortName eq "Frame.o"; | 112 next if $shortName eq "Frame.o"; |
| 113 next if $shortName eq "JSCustomSQLTransactionCallback.o"; | 113 next if $shortName eq "JSCustomSQLTransactionCallback.o"; |
| 114 next if $shortName eq "JSLazyEventListener.o"; | 114 next if $shortName eq "JSLazyEventListener.o"; |
| 115 next if $shortName eq "Node.o"; | 115 next if $shortName eq "Node.o"; |
| 116 next if $shortName eq "Page.o"; | 116 next if $shortName eq "Page.o"; |
| 117 next if $shortName eq "Range.o"; | 117 next if $shortName eq "Range.o"; |
| 118 next if $shortName eq "RenderObject.o"; | 118 next if $shortName eq "LayoutObject.o"; |
| 119 next if $shortName eq "SVGElementInstance.o"; | 119 next if $shortName eq "SVGElementInstance.o"; |
| 120 next if $shortName eq "SubresourceLoader.o"; | 120 next if $shortName eq "SubresourceLoader.o"; |
| 121 next if $shortName eq "XMLHttpRequest.o"; | 121 next if $shortName eq "XMLHttpRequest.o"; |
| 122 } | 122 } |
| 123 if ($target eq "WebKit") { | 123 if ($target eq "WebKit") { |
| 124 next if $shortName eq "HostedNetscapePluginStream.o"; | 124 next if $shortName eq "HostedNetscapePluginStream.o"; |
| 125 next if $shortName eq "NetscapePluginInstanceProxy.o"; | 125 next if $shortName eq "NetscapePluginInstanceProxy.o"; |
| 126 } | 126 } |
| 127 if ($target eq "WebKit2") { | 127 if ($target eq "WebKit2") { |
| 128 next if $shortName eq "WebContext.o"; | 128 next if $shortName eq "WebContext.o"; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 158 if (!open FILT, "c++filt $symbol |") { | 158 if (!open FILT, "c++filt $symbol |") { |
| 159 print "ERROR: Could not open c++filt\n"; | 159 print "ERROR: Could not open c++filt\n"; |
| 160 return; | 160 return; |
| 161 } | 161 } |
| 162 my $result = <FILT>; | 162 my $result = <FILT>; |
| 163 close FILT; | 163 close FILT; |
| 164 chomp $result; | 164 chomp $result; |
| 165 return $result; | 165 return $result; |
| 166 } | 166 } |
| 167 | 167 |
| OLD | NEW |