| 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", | 11 "AddressSanitizer.h", |
| 12 "CallbackStack.cpp", | 12 "CallbackStack.cpp", |
| 13 "CallbackStack.h", | 13 "CallbackStack.h", |
| 14 "GCInfo.cpp", | 14 "GCInfo.cpp", |
| 15 "GCInfo.h", | 15 "GCInfo.h", |
| 16 "GarbageCollected.h", | 16 "GarbageCollected.h", |
| 17 "Handle.h", | 17 "Handle.h", |
| 18 "Heap.cpp", | 18 "Heap.cpp", |
| 19 "Heap.h", | 19 "Heap.h", |
| 20 "InlinedGlobalMarkingVisitor.h", | 20 "InlinedGlobalMarkingVisitor.h", |
| 21 "MarkingVisitor.h", | 21 "MarkingVisitor.h", |
| 22 "MarkingVisitorImpl.h", | 22 "MarkingVisitorImpl.h", |
| 23 "StackFrameDepth.cpp", | 23 "StackFrameDepth.cpp", |
| 24 "StackFrameDepth.h", | 24 "StackFrameDepth.h", |
| 25 "SafePoint.cpp", | 25 "SafePoint.cpp", |
| 26 "SafePoint.h", | 26 "SafePoint.h", |
| 27 "ThreadState.cpp", | 27 "ThreadState.cpp", |
| 28 "ThreadState.h", | 28 "ThreadState.h", |
| 29 "ThreadingTraits.h", | 29 "ThreadingTraits.h", |
| 30 "TraceTraits.h", |
| 30 "Visitor.h", | 31 "Visitor.h", |
| 31 ] | 32 ] |
| 32 | 33 |
| 33 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] | 34 defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
| 34 | 35 |
| 35 configs += [ | 36 configs += [ |
| 36 "//third_party/WebKit/Source:config", | 37 "//third_party/WebKit/Source:config", |
| 37 "//third_party/WebKit/Source:inside_blink", | 38 "//third_party/WebKit/Source:inside_blink", |
| 38 "//build/config/compiler:no_size_t_to_int_warning", | 39 "//build/config/compiler:no_size_t_to_int_warning", |
| 39 ] | 40 ] |
| 40 | 41 |
| 41 deps = [ | 42 deps = [ |
| 42 "//third_party/WebKit/Source/platform/heap/asm", | 43 "//third_party/WebKit/Source/platform/heap/asm", |
| 43 "//third_party/icu", | 44 "//third_party/icu", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| OLD | NEW |