| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("heap") { | 5 source_set("heap") { |
| 6 # This target is a logical part of the platform and only the platform target | 6 # This target is a logical part of the platform and only the platform target |
| 7 # should depend on it. | 7 # should depend on it. |
| 8 visibility = [ "//third_party/WebKit/Source/platform" ] | 8 visibility = [ "//third_party/WebKit/Source/platform" ] |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "AddressSanitizer.h", | |
| 12 "CallbackStack.cpp", | 11 "CallbackStack.cpp", |
| 13 "CallbackStack.h", | 12 "CallbackStack.h", |
| 14 "GCInfo.cpp", | 13 "GCInfo.cpp", |
| 15 "GCInfo.h", | 14 "GCInfo.h", |
| 16 "GarbageCollected.h", | 15 "GarbageCollected.h", |
| 17 "Handle.h", | 16 "Handle.h", |
| 18 "Heap.cpp", | 17 "Heap.cpp", |
| 19 "Heap.h", | 18 "Heap.h", |
| 20 "HeapAllocator.cpp", | 19 "HeapAllocator.cpp", |
| 21 "HeapAllocator.h", | 20 "HeapAllocator.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 42 "//third_party/WebKit/Source:config", | 41 "//third_party/WebKit/Source:config", |
| 43 "//third_party/WebKit/Source:inside_blink", | 42 "//third_party/WebKit/Source:inside_blink", |
| 44 "//build/config/compiler:no_size_t_to_int_warning", | 43 "//build/config/compiler:no_size_t_to_int_warning", |
| 45 ] | 44 ] |
| 46 | 45 |
| 47 deps = [ | 46 deps = [ |
| 48 "//third_party/WebKit/Source/platform/heap/asm", | 47 "//third_party/WebKit/Source/platform/heap/asm", |
| 49 "//third_party/icu", | 48 "//third_party/icu", |
| 50 ] | 49 ] |
| 51 } | 50 } |
| OLD | NEW |