| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'StackFrameDepth.cpp', | 54 'StackFrameDepth.cpp', |
| 55 'StackFrameDepth.h', | 55 'StackFrameDepth.h', |
| 56 'ThreadState.cpp', | 56 'ThreadState.cpp', |
| 57 'ThreadState.h', | 57 'ThreadState.h', |
| 58 'ThreadingTraits.h', | 58 'ThreadingTraits.h', |
| 59 'TraceTraits.h', | 59 'TraceTraits.h', |
| 60 'Visitor.h', | 60 'Visitor.h', |
| 61 ], | 61 ], |
| 62 'platform_heap_test_files': [ | 62 'platform_heap_test_files': [ |
| 63 'HeapTest.cpp', | 63 'HeapTest.cpp', |
| 64 'BlinkGCMemoryDumpProviderTest.cpp', |
| 64 ], | 65 ], |
| 65 'conditions': [ | 66 'conditions': [ |
| 66 ['target_arch == "arm"', { | 67 ['target_arch == "arm"', { |
| 67 'platform_heap_asm_files': [ | 68 'platform_heap_asm_files': [ |
| 68 'asm/SaveRegisters_arm.S', | 69 'asm/SaveRegisters_arm.S', |
| 69 ], | 70 ], |
| 70 }], | 71 }], |
| 71 ['target_arch == "arm64"', { | 72 ['target_arch == "arm64"', { |
| 72 'platform_heap_asm_files': [ | 73 'platform_heap_asm_files': [ |
| 73 'asm/SaveRegisters_arm64.S', | 74 'asm/SaveRegisters_arm64.S', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 84 ], | 85 ], |
| 85 }], | 86 }], |
| 86 ['target_arch == "ia32" or target_arch == "x64"', { | 87 ['target_arch == "ia32" or target_arch == "x64"', { |
| 87 'platform_heap_asm_files': [ | 88 'platform_heap_asm_files': [ |
| 88 'asm/SaveRegisters_x86.asm', | 89 'asm/SaveRegisters_x86.asm', |
| 89 ], | 90 ], |
| 90 }], | 91 }], |
| 91 ], | 92 ], |
| 92 }, | 93 }, |
| 93 } | 94 } |
| OLD | NEW |