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 'BlinkGC.h', | 34 'BlinkGC.h', |
35 'BlinkGCInterruptor.cpp', | 35 'BlinkGCInterruptor.cpp', |
36 'BlinkGCInterruptor.h', | 36 'BlinkGCInterruptor.h', |
37 'BlinkGCMemoryDumpProvider.cpp', | 37 'BlinkGCMemoryDumpProvider.cpp', |
38 'BlinkGCMemoryDumpProvider.h', | 38 'BlinkGCMemoryDumpProvider.h', |
39 'CallbackStack.cpp', | 39 'CallbackStack.cpp', |
40 'CallbackStack.h', | 40 'CallbackStack.h', |
41 'GCInfo.cpp', | 41 'GCInfo.cpp', |
42 'GCInfo.h', | 42 'GCInfo.h', |
| 43 'GCTaskRunner.h', |
43 'GarbageCollected.h', | 44 'GarbageCollected.h', |
44 'Handle.h', | 45 'Handle.h', |
45 'Heap.cpp', | 46 'Heap.cpp', |
46 'Heap.h', | 47 'Heap.h', |
47 'HeapAllocator.cpp', | 48 'HeapAllocator.cpp', |
48 'HeapAllocator.h', | 49 'HeapAllocator.h', |
49 'HeapPage.cpp', | 50 'HeapPage.cpp', |
50 'HeapPage.h', | 51 'HeapPage.h', |
51 'InlinedGlobalMarkingVisitor.h', | 52 'InlinedGlobalMarkingVisitor.h', |
52 'MarkingVisitor.h', | 53 'MarkingVisitor.h', |
53 'MarkingVisitorImpl.h', | 54 'MarkingVisitorImpl.h', |
54 'MessageLoopInterruptor.h', | |
55 'PageMemory.h', | 55 'PageMemory.h', |
56 'PagePool.cpp', | 56 'PagePool.cpp', |
57 'PagePool.h', | 57 'PagePool.h', |
58 'PendingGCRunner.h', | |
59 'PersistentNode.cpp', | 58 'PersistentNode.cpp', |
60 'PersistentNode.h', | 59 'PersistentNode.h', |
61 'SafePoint.cpp', | 60 'SafePoint.cpp', |
62 'SafePoint.h', | 61 'SafePoint.h', |
63 'StackFrameDepth.cpp', | 62 'StackFrameDepth.cpp', |
64 'StackFrameDepth.h', | 63 'StackFrameDepth.h', |
65 'ThreadState.cpp', | 64 'ThreadState.cpp', |
66 'ThreadState.h', | 65 'ThreadState.h', |
67 'ThreadingTraits.h', | 66 'ThreadingTraits.h', |
68 'TraceTraits.h', | 67 'TraceTraits.h', |
(...skipping 25 matching lines...) Expand all Loading... |
94 ], | 93 ], |
95 }], | 94 }], |
96 ['target_arch == "ia32" or target_arch == "x64"', { | 95 ['target_arch == "ia32" or target_arch == "x64"', { |
97 'platform_heap_asm_files': [ | 96 'platform_heap_asm_files': [ |
98 'asm/SaveRegisters_x86.asm', | 97 'asm/SaveRegisters_x86.asm', |
99 ], | 98 ], |
100 }], | 99 }], |
101 ], | 100 ], |
102 }, | 101 }, |
103 } | 102 } |
OLD | NEW |