| 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 visibility = ["//sky/*"] | 5 visibility = ["//sky/*"] |
| 6 | 6 |
| 7 component("wtf") { | 7 component("wtf") { |
| 8 sources = [ | 8 sources = [ |
| 9 "ASCIICType.h", | 9 "ASCIICType.h", |
| 10 "AddressSpaceRandomization.cpp", | 10 "AddressSpaceRandomization.cpp", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "ListHashSet.h", | 80 "ListHashSet.h", |
| 81 "Locker.h", | 81 "Locker.h", |
| 82 "MainThread.cpp", | 82 "MainThread.cpp", |
| 83 "MainThread.h", | 83 "MainThread.h", |
| 84 "MallocZoneSupport.h", | 84 "MallocZoneSupport.h", |
| 85 "MathExtras.h", | 85 "MathExtras.h", |
| 86 "MessageQueue.h", | 86 "MessageQueue.h", |
| 87 "NonCopyingSort.h", | 87 "NonCopyingSort.h", |
| 88 "Noncopyable.h", | 88 "Noncopyable.h", |
| 89 "NotFound.h", | 89 "NotFound.h", |
| 90 "NullPtr.cpp", |
| 90 "NullPtr.h", | 91 "NullPtr.h", |
| 91 "OwnPtr.h", | 92 "OwnPtr.h", |
| 92 "OwnPtrCommon.h", | 93 "OwnPtrCommon.h", |
| 93 "PageAllocator.cpp", | 94 "PageAllocator.cpp", |
| 94 "PageAllocator.h", | 95 "PageAllocator.h", |
| 95 "PartitionAlloc.cpp", | 96 "PartitionAlloc.cpp", |
| 96 "PartitionAlloc.h", | 97 "PartitionAlloc.h", |
| 97 "PassOwnPtr.h", | 98 "PassOwnPtr.h", |
| 98 "PassRefPtr.h", | 99 "PassRefPtr.h", |
| 99 "PassTraits.h", | 100 "PassTraits.h", |
| 100 "PrintStream.cpp", | 101 "PrintStream.cpp", |
| 101 "PrintStream.h", | 102 "PrintStream.h", |
| 102 "ProcessID.h", | 103 "ProcessID.h", |
| 103 "RefCounted.h", | 104 "RefCounted.h", |
| 104 "RefCountedLeakCounter.cpp", | 105 "RefCountedLeakCounter.cpp", |
| 105 "RefCountedLeakCounter.h", | 106 "RefCountedLeakCounter.h", |
| 106 "RefPtr.h", | 107 "RefPtr.h", |
| 108 "RetainPtr.h", |
| 107 "SaturatedArithmetic.h", | 109 "SaturatedArithmetic.h", |
| 108 "SizeLimits.cpp", | 110 "SizeLimits.cpp", |
| 109 "SpinLock.h", | 111 "SpinLock.h", |
| 110 "StaticConstructors.h", | 112 "StaticConstructors.h", |
| 111 "StdLibExtras.h", | 113 "StdLibExtras.h", |
| 112 "StringExtras.h", | 114 "StringExtras.h", |
| 113 "StringHasher.h", | 115 "StringHasher.h", |
| 114 "TemporaryChange.h", | 116 "TemporaryChange.h", |
| 115 "ThreadIdentifierDataPthreads.cpp", | 117 "ThreadIdentifierDataPthreads.cpp", |
| 116 "ThreadIdentifierDataPthreads.h", | 118 "ThreadIdentifierDataPthreads.h", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 284 |
| 283 configs += [ | 285 configs += [ |
| 284 "//sky/engine:config", | 286 "//sky/engine:config", |
| 285 "//sky/engine:non_test_config", | 287 "//sky/engine:non_test_config", |
| 286 ] | 288 ] |
| 287 | 289 |
| 288 deps = [ | 290 deps = [ |
| 289 ":wtf", | 291 ":wtf", |
| 290 ] | 292 ] |
| 291 } | 293 } |
| OLD | NEW |