| 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 "AddressSpaceRandomization.cpp", | 9 "AddressSpaceRandomization.cpp", |
| 10 "AddressSpaceRandomization.h", | 10 "AddressSpaceRandomization.h", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "ListHashSet.h", | 103 "ListHashSet.h", |
| 104 "Locker.h", | 104 "Locker.h", |
| 105 "MainThread.cpp", | 105 "MainThread.cpp", |
| 106 "MainThread.h", | 106 "MainThread.h", |
| 107 "MallocZoneSupport.h", | 107 "MallocZoneSupport.h", |
| 108 "MathExtras.h", | 108 "MathExtras.h", |
| 109 "MessageQueue.h", | 109 "MessageQueue.h", |
| 110 "Noncopyable.h", | 110 "Noncopyable.h", |
| 111 "NonCopyingSort.h", | 111 "NonCopyingSort.h", |
| 112 "NotFound.h", | 112 "NotFound.h", |
| 113 "NullPtr.cpp", | |
| 114 "NullPtr.h", | 113 "NullPtr.h", |
| 115 "OwnPtr.h", | 114 "OwnPtr.h", |
| 116 "OwnPtrCommon.h", | 115 "OwnPtrCommon.h", |
| 117 "PageAllocator.cpp", | 116 "PageAllocator.cpp", |
| 118 "PageAllocator.h", | 117 "PageAllocator.h", |
| 119 "PartitionAlloc.cpp", | 118 "PartitionAlloc.cpp", |
| 120 "PartitionAlloc.h", | 119 "PartitionAlloc.h", |
| 121 "PassOwnPtr.h", | 120 "PassOwnPtr.h", |
| 122 "PassRefPtr.h", | 121 "PassRefPtr.h", |
| 123 "PassTraits.h", | 122 "PassTraits.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 299 |
| 301 configs += [ | 300 configs += [ |
| 302 "//sky/engine:config", | 301 "//sky/engine:config", |
| 303 "//sky/engine:non_test_config", | 302 "//sky/engine:non_test_config", |
| 304 ] | 303 ] |
| 305 | 304 |
| 306 deps = [ | 305 deps = [ |
| 307 ":wtf", | 306 ":wtf", |
| 308 ] | 307 ] |
| 309 } | 308 } |
| OLD | NEW |