Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: third_party/WebKit/Source/platform/wtf/BUILD.gn

Issue 2741343017: Move files in wtf/ to platform/wtf/ (Part 4). (Closed)
Patch Set: Rebase. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 source_set("platform_wtf") { 60 source_set("platform_wtf") {
61 sources = [ 61 sources = [
62 "ASCIICType.cpp",
63 "ASCIICType.h",
62 "AddressSanitizer.h", 64 "AddressSanitizer.h",
63 "Alignment.h", 65 "Alignment.h",
66 "Assertions.h",
67 "Atomics.h",
64 "AutoReset.h", 68 "AutoReset.h",
65 "BitwiseOperations.h", 69 "BitwiseOperations.h",
66 "ByteSwap.h", 70 "ByteSwap.h",
67 "CPU.h", 71 "CPU.h",
68 "CheckedNumeric.h", 72 "CheckedNumeric.h",
69 "Compiler.h", 73 "Compiler.h",
70 "ConditionalDestructor.h", 74 "ConditionalDestructor.h",
71 "ContainerAnnotations.h", 75 "ContainerAnnotations.h",
72 "CryptographicallyRandomNumber.cpp", 76 "CryptographicallyRandomNumber.cpp",
73 "CryptographicallyRandomNumber.h", 77 "CryptographicallyRandomNumber.h",
74 "CurrentTime.cpp", 78 "CurrentTime.cpp",
75 "CurrentTime.h", 79 "CurrentTime.h",
76 "DynamicAnnotations.cpp", 80 "DynamicAnnotations.cpp",
77 "DynamicAnnotations.h", 81 "DynamicAnnotations.h",
78 "Forward.h", 82 "Forward.h",
79 "GetPtr.h", 83 "GetPtr.h",
80 "LeakAnnotations.h", 84 "LeakAnnotations.h",
81 "NonCopyingSort.h", 85 "NonCopyingSort.h",
82 "Noncopyable.h", 86 "Noncopyable.h",
83 "NotFound.h", 87 "NotFound.h",
84 "Optional.h", 88 "Optional.h",
85 "SizeAssertions.h", 89 "SizeAssertions.h",
90 "SpinLock.h",
86 "StaticConstructors.h", 91 "StaticConstructors.h",
92 "StringExtras.h",
87 "Time.h", 93 "Time.h",
88 "TriState.h", 94 "TriState.h",
89 "TypeTraits.h", 95 "TypeTraits.h",
90 "WTFExport.h", 96 "WTFExport.h",
91 "build_config.h", 97 "build_config.h",
98 "text/Unicode.h",
99 "text/icu/UnicodeIcu.h",
92 ] 100 ]
93 101
94 configs += [ 102 configs += [
95 "//third_party/WebKit/Source:config", 103 "//third_party/WebKit/Source:config",
96 "//third_party/WebKit/Source:non_test_config", 104 "//third_party/WebKit/Source:non_test_config",
97 "//third_party/WebKit/Source:blink_pch", 105 "//third_party/WebKit/Source:blink_pch",
98 ] 106 ]
99 107
100 defines = [ "WTF_IMPLEMENTATION=1" ] 108 defines = [ "WTF_IMPLEMENTATION=1" ]
101 109
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 # "text/AtomicStringCF.cpp", 152 # "text/AtomicStringCF.cpp",
145 # "text/StringImplCF.cpp", 153 # "text/StringImplCF.cpp",
146 # ] 154 # ]
147 } 155 }
148 156
149 if (remove_webcore_debug_symbols) { 157 if (remove_webcore_debug_symbols) {
150 configs -= [ "//build/config/compiler:default_symbols" ] 158 configs -= [ "//build/config/compiler:default_symbols" ]
151 configs += [ "//build/config/compiler:no_symbols" ] 159 configs += [ "//build/config/compiler:no_symbols" ]
152 } 160 }
153 } 161 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/Atomics.h ('k') | third_party/WebKit/Source/platform/wtf/SpinLock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698