| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 # wtf to generate 4291 warning due to operator new/delete | 52 # wtf to generate 4291 warning due to operator new/delete |
| 53 # implementations. Disable the warning for chromium windows multi-dll | 53 # implementations. Disable the warning for chromium windows multi-dll |
| 54 # build. | 54 # build. |
| 55 cflags += [ "/wd4291" ] | 55 cflags += [ "/wd4291" ] |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 } | 58 } |
| 59 | 59 |
| 60 component("platform_wtf") { | 60 component("platform_wtf") { |
| 61 sources = [ | 61 sources = [ |
| 62 "AddressSanitizer.h", |
| 63 "Alignment.h", |
| 64 "AutoReset.h", |
| 65 "BitwiseOperations.h", |
| 62 "ByteSwap.h", | 66 "ByteSwap.h", |
| 63 "CPU.h", | 67 "CPU.h", |
| 68 "CheckedNumeric.h", |
| 64 "Compiler.h", | 69 "Compiler.h", |
| 70 "ConditionalDestructor.h", |
| 71 "ContainerAnnotations.h", |
| 65 "CryptographicallyRandomNumber.cpp", | 72 "CryptographicallyRandomNumber.cpp", |
| 66 "CryptographicallyRandomNumber.h", | 73 "CryptographicallyRandomNumber.h", |
| 74 "CurrentTime.cpp", |
| 75 "CurrentTime.h", |
| 76 "DynamicAnnotations.cpp", |
| 77 "DynamicAnnotations.h", |
| 67 "Forward.h", | 78 "Forward.h", |
| 79 "GetPtr.h", |
| 80 "LeakAnnotations.h", |
| 81 "Noncopyable.h", |
| 68 "TypeTraits.h", | 82 "TypeTraits.h", |
| 69 "WTFExport.h", | 83 "WTFExport.h", |
| 70 "build_config.h", | 84 "build_config.h", |
| 71 ] | 85 ] |
| 72 | 86 |
| 73 configs += [ | 87 configs += [ |
| 74 "//third_party/WebKit/Source:config", | 88 "//third_party/WebKit/Source:config", |
| 75 "//third_party/WebKit/Source:non_test_config", | 89 "//third_party/WebKit/Source:non_test_config", |
| 76 "//third_party/WebKit/Source:blink_pch", | 90 "//third_party/WebKit/Source:blink_pch", |
| 77 ] | 91 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 # "text/AtomicStringCF.cpp", | 137 # "text/AtomicStringCF.cpp", |
| 124 # "text/StringImplCF.cpp", | 138 # "text/StringImplCF.cpp", |
| 125 # ] | 139 # ] |
| 126 } | 140 } |
| 127 | 141 |
| 128 if (remove_webcore_debug_symbols) { | 142 if (remove_webcore_debug_symbols) { |
| 129 configs -= [ "//build/config/compiler:default_symbols" ] | 143 configs -= [ "//build/config/compiler:default_symbols" ] |
| 130 configs += [ "//build/config/compiler:no_symbols" ] | 144 configs += [ "//build/config/compiler:no_symbols" ] |
| 131 } | 145 } |
| 132 } | 146 } |
| OLD | NEW |