| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 'InlinedGlobalMarkingVisitor.h', | 43 'InlinedGlobalMarkingVisitor.h', |
| 44 'MarkingVisitor.h', | 44 'MarkingVisitor.h', |
| 45 'MarkingVisitorImpl.h', | 45 'MarkingVisitorImpl.h', |
| 46 'SafePoint.cpp', | 46 'SafePoint.cpp', |
| 47 'SafePoint.h', | 47 'SafePoint.h', |
| 48 'StackFrameDepth.cpp', | 48 'StackFrameDepth.cpp', |
| 49 'StackFrameDepth.h', | 49 'StackFrameDepth.h', |
| 50 'ThreadState.cpp', | 50 'ThreadState.cpp', |
| 51 'ThreadState.h', | 51 'ThreadState.h', |
| 52 'ThreadingTraits.h', | 52 'ThreadingTraits.h', |
| 53 'TraceTraits.h', |
| 53 'Visitor.h', | 54 'Visitor.h', |
| 54 ], | 55 ], |
| 55 'platform_heap_test_files': [ | 56 'platform_heap_test_files': [ |
| 56 'HeapTest.cpp', | 57 'HeapTest.cpp', |
| 57 ], | 58 ], |
| 58 'conditions': [ | 59 'conditions': [ |
| 59 ['target_arch == "arm"', { | 60 ['target_arch == "arm"', { |
| 60 'platform_heap_asm_files': [ | 61 'platform_heap_asm_files': [ |
| 61 'asm/SaveRegisters_arm.S', | 62 'asm/SaveRegisters_arm.S', |
| 62 ], | 63 ], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 77 ], | 78 ], |
| 78 }], | 79 }], |
| 79 ['target_arch == "ia32" or target_arch == "x64"', { | 80 ['target_arch == "ia32" or target_arch == "x64"', { |
| 80 'platform_heap_asm_files': [ | 81 'platform_heap_asm_files': [ |
| 81 'asm/SaveRegisters_x86.asm', | 82 'asm/SaveRegisters_x86.asm', |
| 82 ], | 83 ], |
| 83 }], | 84 }], |
| 84 ], | 85 ], |
| 85 }, | 86 }, |
| 86 } | 87 } |
| OLD | NEW |