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
3# found in the LICENSE file.
4
5visibility = [ "//third_party/WebKit/Source/*" ]
6
7source_set("heap") {
8  sources = [
9    "AddressSanitizer.h",
10    "CallbackStack.cpp",
11    "CallbackStack.h",
12    "Handle.cpp",
13    "Handle.h",
14    "Heap.cpp",
15    "Heap.h",
16    "ThreadState.cpp",
17    "ThreadState.h",
18    "Visitor.cpp",
19    "Visitor.h",
20  ]
21
22  configs += [ "//third_party/WebKit/Source:config" ]
23
24  deps = [
25    "//third_party/WebKit/Source/platform/heap/asm",
26    "//third_party/icu",
27  ]
28}
29