| 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 assert(!is_ios) | 5 assert(!is_ios) |
| 6 | 6 |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 | 9 |
| 10 visibility = [ | 10 visibility = [ |
| 11 "//mojo/public/cpp/bindings/*", | 11 "//mojo/public/cpp/bindings/*", |
| 12 "//third_party/WebKit/*", | 12 "//third_party/WebKit/*", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 config("wtf_config") { | 15 config("wtf_config") { |
| 16 configs = [ "//third_party/WebKit/Source/platform/wtf:wtf_config" ] | 16 configs = [ "//third_party/WebKit/Source/platform/wtf:wtf_config" ] |
| 17 } | 17 } |
| 18 | 18 |
| 19 component("wtf") { | 19 component("wtf") { |
| 20 sources = [ | 20 sources = [ |
| 21 "ASCIICType.h", | 21 "ASCIICType.h", |
| 22 "AddressSanitizer.h", | 22 "AddressSanitizer.h", |
| 23 "Alignment.h", | 23 "Alignment.h", |
| 24 "Allocator.h", | 24 "Allocator.h", |
| 25 "Assertions.cpp", | |
| 26 "Assertions.h", | 25 "Assertions.h", |
| 27 "Atomics.h", | 26 "Atomics.h", |
| 28 "AutoReset.h", | 27 "AutoReset.h", |
| 29 "BitVector.cpp", | 28 "BitVector.cpp", |
| 30 "BitVector.h", | 29 "BitVector.h", |
| 31 "BitwiseOperations.h", | 30 "BitwiseOperations.h", |
| 32 "BloomFilter.h", | 31 "BloomFilter.h", |
| 33 "ByteOrder.h", | 32 "ByteOrder.h", |
| 34 "ByteSwap.h", | 33 "ByteSwap.h", |
| 35 "CPU.h", | 34 "CPU.h", |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 ] | 324 ] |
| 326 | 325 |
| 327 deps = [ | 326 deps = [ |
| 328 ":wtf", | 327 ":wtf", |
| 329 "//base", | 328 "//base", |
| 330 "//base/test:test_support", | 329 "//base/test:test_support", |
| 331 "//testing/gmock", | 330 "//testing/gmock", |
| 332 "//testing/gtest", | 331 "//testing/gtest", |
| 333 ] | 332 ] |
| 334 } | 333 } |
| OLD | NEW |