| 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 22 matching lines...) Expand all Loading... |
| 33 'platform_heap_files': [ | 33 'platform_heap_files': [ |
| 34 'AddressSanitizer.h', | 34 'AddressSanitizer.h', |
| 35 'CallbackStack.cpp', | 35 'CallbackStack.cpp', |
| 36 'CallbackStack.h', | 36 'CallbackStack.h', |
| 37 'GCInfo.cpp', | 37 'GCInfo.cpp', |
| 38 'GCInfo.h', | 38 'GCInfo.h', |
| 39 'GarbageCollected.h', | 39 'GarbageCollected.h', |
| 40 'Handle.h', | 40 'Handle.h', |
| 41 'Heap.cpp', | 41 'Heap.cpp', |
| 42 'Heap.h', | 42 'Heap.h', |
| 43 'HeapAllocator.cpp', |
| 44 'HeapAllocator.h', |
| 43 'InlinedGlobalMarkingVisitor.h', | 45 'InlinedGlobalMarkingVisitor.h', |
| 44 'MarkingVisitor.h', | 46 'MarkingVisitor.h', |
| 45 'MarkingVisitorImpl.h', | 47 'MarkingVisitorImpl.h', |
| 46 'SafePoint.cpp', | 48 'SafePoint.cpp', |
| 47 'SafePoint.h', | 49 'SafePoint.h', |
| 48 'StackFrameDepth.cpp', | 50 'StackFrameDepth.cpp', |
| 49 'StackFrameDepth.h', | 51 'StackFrameDepth.h', |
| 50 'ThreadState.cpp', | 52 'ThreadState.cpp', |
| 51 'ThreadState.h', | 53 'ThreadState.h', |
| 52 'ThreadingTraits.h', | 54 'ThreadingTraits.h', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 78 ], | 80 ], |
| 79 }], | 81 }], |
| 80 ['target_arch == "ia32" or target_arch == "x64"', { | 82 ['target_arch == "ia32" or target_arch == "x64"', { |
| 81 'platform_heap_asm_files': [ | 83 'platform_heap_asm_files': [ |
| 82 'asm/SaveRegisters_x86.asm', | 84 'asm/SaveRegisters_x86.asm', |
| 83 ], | 85 ], |
| 84 }], | 86 }], |
| 85 ], | 87 ], |
| 86 }, | 88 }, |
| 87 } | 89 } |
| OLD | NEW |