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

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

Issue 2752293004: Move files in wtf/ to platform/wtf/ (Part 5). (Closed)
Patch Set: 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "CurrentTime.cpp", 78 "CurrentTime.cpp",
79 "CurrentTime.h", 79 "CurrentTime.h",
80 "DynamicAnnotations.cpp", 80 "DynamicAnnotations.cpp",
81 "DynamicAnnotations.h", 81 "DynamicAnnotations.h",
82 "Forward.h", 82 "Forward.h",
83 "GetPtr.h", 83 "GetPtr.h",
84 "LeakAnnotations.h", 84 "LeakAnnotations.h",
85 "NonCopyingSort.h", 85 "NonCopyingSort.h",
86 "Noncopyable.h", 86 "Noncopyable.h",
87 "NotFound.h", 87 "NotFound.h",
88 "NotNull.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",
96 "WTFExport.h", 97 "WTFExport.h",
97 "build_config.h", 98 "build_config.h",
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 # "text/AtomicStringCF.cpp", 153 # "text/AtomicStringCF.cpp",
153 # "text/StringImplCF.cpp", 154 # "text/StringImplCF.cpp",
154 # ] 155 # ]
155 } 156 }
156 157
157 if (remove_webcore_debug_symbols) { 158 if (remove_webcore_debug_symbols) {
158 configs -= [ "//build/config/compiler:default_symbols" ] 159 configs -= [ "//build/config/compiler:default_symbols" ]
159 configs += [ "//build/config/compiler:no_symbols" ] 160 configs += [ "//build/config/compiler:no_symbols" ]
160 } 161 }
161 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698