| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 } | 227 } |
| 228 | 228 |
| 229 test("unittests") { | 229 test("unittests") { |
| 230 output_name = "sky_wtf_unittests" | 230 output_name = "sky_wtf_unittests" |
| 231 | 231 |
| 232 sources = [ | 232 sources = [ |
| 233 "ArrayBufferBuilderTest.cpp", | 233 "ArrayBufferBuilderTest.cpp", |
| 234 "CheckedArithmeticTest.cpp", | 234 "CheckedArithmeticTest.cpp", |
| 235 "DequeTest.cpp", | 235 "DequeTest.cpp", |
| 236 "DoubleBufferedDequeTest.cpp", | 236 "DoubleBufferedDequeTest.cpp", |
| 237 "FunctionalTest.cpp", | |
| 238 "HashMapTest.cpp", | 237 "HashMapTest.cpp", |
| 239 "HashSetTest.cpp", | 238 "HashSetTest.cpp", |
| 240 "ListHashSetTest.cpp", | 239 "ListHashSetTest.cpp", |
| 241 "MathExtrasTest.cpp", | 240 "MathExtrasTest.cpp", |
| 242 "PartitionAllocTest.cpp", | 241 "PartitionAllocTest.cpp", |
| 243 "RefPtrTest.cpp", | 242 "RefPtrTest.cpp", |
| 244 "SaturatedArithmeticTest.cpp", | 243 "SaturatedArithmeticTest.cpp", |
| 245 "StringExtrasTest.cpp", | 244 "StringExtrasTest.cpp", |
| 246 "StringHasherTest.cpp", | 245 "StringHasherTest.cpp", |
| 247 "TemporaryChangeTest.cpp", | 246 "TemporaryChangeTest.cpp", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 | 285 |
| 287 configs += [ | 286 configs += [ |
| 288 "//sky/engine:config", | 287 "//sky/engine:config", |
| 289 "//sky/engine:non_test_config", | 288 "//sky/engine:non_test_config", |
| 290 ] | 289 ] |
| 291 | 290 |
| 292 deps = [ | 291 deps = [ |
| 293 ":wtf", | 292 ":wtf", |
| 294 ] | 293 ] |
| 295 } | 294 } |
| OLD | NEW |