| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'Heap.cpp', | 42 'Heap.cpp', |
| 43 'Heap.h', | 43 'Heap.h', |
| 44 'HeapAllocator.cpp', | 44 'HeapAllocator.cpp', |
| 45 'HeapAllocator.h', | 45 'HeapAllocator.h', |
| 46 'InlinedGlobalMarkingVisitor.h', | 46 'InlinedGlobalMarkingVisitor.h', |
| 47 'MarkingVisitor.h', | 47 'MarkingVisitor.h', |
| 48 'MarkingVisitorImpl.h', | 48 'MarkingVisitorImpl.h', |
| 49 'PageMemory.h', | 49 'PageMemory.h', |
| 50 'PagePool.cpp', | 50 'PagePool.cpp', |
| 51 'PagePool.h', | 51 'PagePool.h', |
| 52 'PersistentNode.cpp', |
| 53 'PersistentNode.h', |
| 52 'SafePoint.cpp', | 54 'SafePoint.cpp', |
| 53 'SafePoint.h', | 55 'SafePoint.h', |
| 54 'StackFrameDepth.cpp', | 56 'StackFrameDepth.cpp', |
| 55 'StackFrameDepth.h', | 57 'StackFrameDepth.h', |
| 56 'ThreadState.cpp', | 58 'ThreadState.cpp', |
| 57 'ThreadState.h', | 59 'ThreadState.h', |
| 58 'ThreadingTraits.h', | 60 'ThreadingTraits.h', |
| 59 'TraceTraits.h', | 61 'TraceTraits.h', |
| 60 'Visitor.h', | 62 'Visitor.h', |
| 61 ], | 63 ], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 85 ], | 87 ], |
| 86 }], | 88 }], |
| 87 ['target_arch == "ia32" or target_arch == "x64"', { | 89 ['target_arch == "ia32" or target_arch == "x64"', { |
| 88 'platform_heap_asm_files': [ | 90 'platform_heap_asm_files': [ |
| 89 'asm/SaveRegisters_x86.asm', | 91 'asm/SaveRegisters_x86.asm', |
| 90 ], | 92 ], |
| 91 }], | 93 }], |
| 92 ], | 94 ], |
| 93 }, | 95 }, |
| 94 } | 96 } |
| OLD | NEW |