| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 'filepath': 'include/', | 37 'filepath': 'include/', |
| 38 }, | 38 }, |
| 39 'snapshot': { | 39 'snapshot': { |
| 40 'filepath': 'src/snapshot/', | 40 'filepath': 'src/snapshot/', |
| 41 }, | 41 }, |
| 42 'debugger': { | 42 'debugger': { |
| 43 'filepath': 'src/debug/', | 43 'filepath': 'src/debug/', |
| 44 }, | 44 }, |
| 45 'interpreter': { | 45 'interpreter': { |
| 46 'filepath': 'src/interpreter/' \ | 46 'filepath': 'src/interpreter/' \ |
| 47 '|src/compiler/interpreter' \ |
| 48 '|src/compiler/bytecode' \ |
| 47 '|test/cctest/interpreter/' \ | 49 '|test/cctest/interpreter/' \ |
| 48 '|test/unittests/interpreter/', | 50 '|test/unittests/interpreter/', |
| 49 }, | 51 }, |
| 50 'feature_shipping_status': { | 52 'feature_shipping_status': { |
| 51 'filepath': 'src/flag-definitions.h', | 53 'filepath': 'src/flag-definitions.h', |
| 52 }, | 54 }, |
| 53 'gc_changes': { | 55 'gc_changes': { |
| 54 'filepath': 'src/heap/', | 56 'filepath': 'src/heap/', |
| 55 }, | 57 }, |
| 56 'arm': { | 58 'arm': { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 84 ], | 86 ], |
| 85 'arm': [ | 87 'arm': [ |
| 86 'v8-mips-ports@googlegroups.com', | 88 'v8-mips-ports@googlegroups.com', |
| 87 'v8-ppc-ports@googlegroups.com', | 89 'v8-ppc-ports@googlegroups.com', |
| 88 ], | 90 ], |
| 89 'ia32': [ | 91 'ia32': [ |
| 90 'v8-x87-ports@googlegroups.com', | 92 'v8-x87-ports@googlegroups.com', |
| 91 ], | 93 ], |
| 92 }, | 94 }, |
| 93 } | 95 } |
| OLD | NEW |