| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'StackFrameDepth.h', | 67 'StackFrameDepth.h', |
| 68 'ThreadState.cpp', | 68 'ThreadState.cpp', |
| 69 'ThreadState.h', | 69 'ThreadState.h', |
| 70 'ThreadingTraits.h', | 70 'ThreadingTraits.h', |
| 71 'TraceTraits.h', | 71 'TraceTraits.h', |
| 72 'Visitor.cpp', | 72 'Visitor.cpp', |
| 73 'Visitor.h', | 73 'Visitor.h', |
| 74 'WrapperVisitor.h', | 74 'WrapperVisitor.h', |
| 75 ], | 75 ], |
| 76 'platform_heap_test_files': [ | 76 'platform_heap_test_files': [ |
| 77 'BlinkGCMemoryDumpProviderTest.cpp', |
| 77 'HeapTest.cpp', | 78 'HeapTest.cpp', |
| 78 'BlinkGCMemoryDumpProviderTest.cpp', | 79 'PersistentTest.cpp', |
| 79 ], | 80 ], |
| 80 'conditions': [ | 81 'conditions': [ |
| 81 ['target_arch == "arm"', { | 82 ['target_arch == "arm"', { |
| 82 'platform_heap_asm_files': [ | 83 'platform_heap_asm_files': [ |
| 83 'asm/SaveRegisters_arm.S', | 84 'asm/SaveRegisters_arm.S', |
| 84 ], | 85 ], |
| 85 }], | 86 }], |
| 86 ['target_arch == "arm64"', { | 87 ['target_arch == "arm64"', { |
| 87 'platform_heap_asm_files': [ | 88 'platform_heap_asm_files': [ |
| 88 'asm/SaveRegisters_arm64.S', | 89 'asm/SaveRegisters_arm64.S', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 99 ], | 100 ], |
| 100 }], | 101 }], |
| 101 ['target_arch == "ia32" or target_arch == "x64"', { | 102 ['target_arch == "ia32" or target_arch == "x64"', { |
| 102 'platform_heap_asm_files': [ | 103 'platform_heap_asm_files': [ |
| 103 'asm/SaveRegisters_x86.asm', | 104 'asm/SaveRegisters_x86.asm', |
| 104 ], | 105 ], |
| 105 }], | 106 }], |
| 106 ], | 107 ], |
| 107 }, | 108 }, |
| 108 } | 109 } |
| OLD | NEW |