| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright 2012 the V8 project authors. All rights reserved. | 3 # Copyright 2012 the V8 project authors. All rights reserved. |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 'crypto.js', | 334 'crypto.js', |
| 335 'daemon.py', | 335 'daemon.py', |
| 336 'earley-boyer.js', | 336 'earley-boyer.js', |
| 337 'fannkuch.js', | 337 'fannkuch.js', |
| 338 'fasta.js', | 338 'fasta.js', |
| 339 'jsmin.py', | 339 'jsmin.py', |
| 340 'libraries.cc', | 340 'libraries.cc', |
| 341 'libraries-empty.cc', | 341 'libraries-empty.cc', |
| 342 'lua_binarytrees.js', | 342 'lua_binarytrees.js', |
| 343 'memops.js', | 343 'memops.js', |
| 344 'poppler.js', |
| 344 'primes.js', | 345 'primes.js', |
| 345 'raytrace.js', | 346 'raytrace.js', |
| 346 'regexp-pcre.js', | 347 'regexp-pcre.js', |
| 347 'sqlite.js', | 348 'sqlite.js', |
| 348 'sqlite-change-heap.js', | 349 'sqlite-change-heap.js', |
| 349 'sqlite-pointer-masking.js', | 350 'sqlite-pointer-masking.js', |
| 350 'sqlite-safe-heap.js', | 351 'sqlite-safe-heap.js', |
| 351 'gnuplot-4.6.3-emscripten.js', | 352 'gnuplot-4.6.3-emscripten.js', |
| 352 'zlib.js'] | 353 'zlib.js'] |
| 353 IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js'] | 354 IGNORE_TABS = IGNORE_COPYRIGHTS + ['unicode-test.js', 'html-comments.js'] |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 success = CheckRuntimeVsNativesNameClashes(workspace) and success | 492 success = CheckRuntimeVsNativesNameClashes(workspace) and success |
| 492 success = CheckExternalReferenceRegistration(workspace) and success | 493 success = CheckExternalReferenceRegistration(workspace) and success |
| 493 if success: | 494 if success: |
| 494 return 0 | 495 return 0 |
| 495 else: | 496 else: |
| 496 return 1 | 497 return 1 |
| 497 | 498 |
| 498 | 499 |
| 499 if __name__ == '__main__': | 500 if __name__ == '__main__': |
| 500 sys.exit(Main()) | 501 sys.exit(Main()) |
| OLD | NEW |