| 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.h", | 25 "Assertions.h", |
| 26 "Atomics.h", | 26 "Atomics.h", |
| 27 "AutoReset.h", | 27 "AutoReset.h", |
| 28 "BitVector.cpp", | |
| 29 "BitVector.h", | 28 "BitVector.h", |
| 30 "BitwiseOperations.h", | 29 "BitwiseOperations.h", |
| 31 "BloomFilter.h", | 30 "BloomFilter.h", |
| 32 "ByteOrder.h", | 31 "ByteOrder.h", |
| 33 "ByteSwap.h", | 32 "ByteSwap.h", |
| 34 "CPU.h", | 33 "CPU.h", |
| 35 "CheckedNumeric.h", | 34 "CheckedNumeric.h", |
| 36 "Compiler.h", | 35 "Compiler.h", |
| 37 "ConditionalDestructor.h", | 36 "ConditionalDestructor.h", |
| 38 "ContainerAnnotations.h", | 37 "ContainerAnnotations.h", |
| 39 "CryptographicallyRandomNumber.h", | 38 "CryptographicallyRandomNumber.h", |
| 40 "CurrentTime.h", | 39 "CurrentTime.h", |
| 41 "DataLog.cpp", | |
| 42 "DataLog.h", | 40 "DataLog.h", |
| 43 "DateMath.cpp", | 41 "DateMath.cpp", |
| 44 "DateMath.h", | 42 "DateMath.h", |
| 45 "Deque.h", | 43 "Deque.h", |
| 46 "DoublyLinkedList.h", | 44 "DoublyLinkedList.h", |
| 47 "DynamicAnnotations.h", | 45 "DynamicAnnotations.h", |
| 48 "FilePrintStream.cpp", | 46 "FilePrintStream.cpp", |
| 49 "FilePrintStream.h", | 47 "FilePrintStream.h", |
| 50 "Forward.h", | 48 "Forward.h", |
| 51 "Functional.h", | 49 "Functional.h", |
| 52 "GetPtr.h", | 50 "GetPtr.h", |
| 53 "HashCountedSet.h", | 51 "HashCountedSet.h", |
| 54 "HashFunctions.h", | 52 "HashFunctions.h", |
| 55 "HashIterators.h", | 53 "HashIterators.h", |
| 56 "HashMap.h", | 54 "HashMap.h", |
| 57 "HashSet.h", | 55 "HashSet.h", |
| 58 "HashTable.cpp", | |
| 59 "HashTable.h", | 56 "HashTable.h", |
| 60 "HashTableDeletedValueType.h", | 57 "HashTableDeletedValueType.h", |
| 61 "HashTraits.h", | 58 "HashTraits.h", |
| 62 "HexNumber.h", | 59 "HexNumber.h", |
| 63 "InstanceCounter.cpp", | 60 "InstanceCounter.cpp", |
| 64 "InstanceCounter.h", | 61 "InstanceCounter.h", |
| 65 "LeakAnnotations.h", | 62 "LeakAnnotations.h", |
| 66 "ListHashSet.h", | 63 "ListHashSet.h", |
| 67 "Locker.h", | 64 "Locker.h", |
| 68 "MathExtras.h", | 65 "MathExtras.h", |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 ] | 321 ] |
| 325 | 322 |
| 326 deps = [ | 323 deps = [ |
| 327 ":wtf", | 324 ":wtf", |
| 328 "//base", | 325 "//base", |
| 329 "//base/test:test_support", | 326 "//base/test:test_support", |
| 330 "//testing/gmock", | 327 "//testing/gmock", |
| 331 "//testing/gtest", | 328 "//testing/gtest", |
| 332 ] | 329 ] |
| 333 } | 330 } |
| OLD | NEW |