| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 # The below is a temporary setup during the WTF migration project: | 5 # The below is a temporary setup during the WTF migration project: |
| 6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC
AAJ | 6 # https://groups.google.com/a/chromium.org/d/msg/blink-dev/tLdAZCTlcAA/bYXVT8gYC
AAJ |
| 7 # | 7 # |
| 8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually, | 8 # We are moving wtf/ files to platform/wtf/ incrementally, thus, conceptually, |
| 9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that | 9 # the "wtf" target in wtf/BUILD.gn is being split into two, in a way that |
| 10 # only wtf/ can refer the contents in platform/wtf/. | 10 # only wtf/ can refer the contents in platform/wtf/. |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 } | 58 } |
| 59 | 59 |
| 60 source_set("platform_wtf") { | 60 source_set("platform_wtf") { |
| 61 sources = [ | 61 sources = [ |
| 62 "ASCIICType.cpp", | 62 "ASCIICType.cpp", |
| 63 "ASCIICType.h", | 63 "ASCIICType.h", |
| 64 "AddressSanitizer.h", | 64 "AddressSanitizer.h", |
| 65 "Alignment.h", | 65 "Alignment.h", |
| 66 "Allocator.h", |
| 66 "Assertions.h", | 67 "Assertions.h", |
| 67 "Atomics.h", | 68 "Atomics.h", |
| 68 "AutoReset.h", | 69 "AutoReset.h", |
| 69 "BitwiseOperations.h", | 70 "BitwiseOperations.h", |
| 70 "ByteSwap.h", | 71 "ByteSwap.h", |
| 71 "CPU.h", | 72 "CPU.h", |
| 72 "CheckedNumeric.h", | 73 "CheckedNumeric.h", |
| 73 "Compiler.h", | 74 "Compiler.h", |
| 74 "ConditionalDestructor.h", | 75 "ConditionalDestructor.h", |
| 75 "ContainerAnnotations.h", | 76 "ContainerAnnotations.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 86 "Noncopyable.h", | 87 "Noncopyable.h", |
| 87 "NotFound.h", | 88 "NotFound.h", |
| 88 "Optional.h", | 89 "Optional.h", |
| 89 "SizeAssertions.h", | 90 "SizeAssertions.h", |
| 90 "SpinLock.h", | 91 "SpinLock.h", |
| 91 "StaticConstructors.h", | 92 "StaticConstructors.h", |
| 92 "StringExtras.h", | 93 "StringExtras.h", |
| 93 "Time.h", | 94 "Time.h", |
| 94 "TriState.h", | 95 "TriState.h", |
| 95 "TypeTraits.h", | 96 "TypeTraits.h", |
| 97 "WTF.h", |
| 96 "WTFExport.h", | 98 "WTFExport.h", |
| 99 "allocator/PartitionAllocator.cpp", |
| 100 "allocator/PartitionAllocator.h", |
| 101 "allocator/Partitions.cpp", |
| 102 "allocator/Partitions.h", |
| 97 "build_config.h", | 103 "build_config.h", |
| 98 "text/Unicode.h", | 104 "text/Unicode.h", |
| 99 "text/icu/UnicodeIcu.h", | 105 "text/icu/UnicodeIcu.h", |
| 100 ] | 106 ] |
| 101 | 107 |
| 102 configs += [ | 108 configs += [ |
| 103 "//third_party/WebKit/Source:config", | 109 "//third_party/WebKit/Source:config", |
| 104 "//third_party/WebKit/Source:non_test_config", | 110 "//third_party/WebKit/Source:non_test_config", |
| 105 "//third_party/WebKit/Source:blink_pch", | 111 "//third_party/WebKit/Source:blink_pch", |
| 106 ] | 112 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 # "text/AtomicStringCF.cpp", | 158 # "text/AtomicStringCF.cpp", |
| 153 # "text/StringImplCF.cpp", | 159 # "text/StringImplCF.cpp", |
| 154 # ] | 160 # ] |
| 155 } | 161 } |
| 156 | 162 |
| 157 if (remove_webcore_debug_symbols) { | 163 if (remove_webcore_debug_symbols) { |
| 158 configs -= [ "//build/config/compiler:default_symbols" ] | 164 configs -= [ "//build/config/compiler:default_symbols" ] |
| 159 configs += [ "//build/config/compiler:no_symbols" ] | 165 configs += [ "//build/config/compiler:no_symbols" ] |
| 160 } | 166 } |
| 161 } | 167 } |
| OLD | NEW |