| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 "ContainerAnnotations.h", | 71 "ContainerAnnotations.h", |
| 72 "CryptographicallyRandomNumber.cpp", | 72 "CryptographicallyRandomNumber.cpp", |
| 73 "CryptographicallyRandomNumber.h", | 73 "CryptographicallyRandomNumber.h", |
| 74 "CurrentTime.cpp", | 74 "CurrentTime.cpp", |
| 75 "CurrentTime.h", | 75 "CurrentTime.h", |
| 76 "DynamicAnnotations.cpp", | 76 "DynamicAnnotations.cpp", |
| 77 "DynamicAnnotations.h", | 77 "DynamicAnnotations.h", |
| 78 "Forward.h", | 78 "Forward.h", |
| 79 "GetPtr.h", | 79 "GetPtr.h", |
| 80 "LeakAnnotations.h", | 80 "LeakAnnotations.h", |
| 81 "NonCopyingSort.h", |
| 81 "Noncopyable.h", | 82 "Noncopyable.h", |
| 83 "NotFound.h", |
| 84 "Optional.h", |
| 85 "SizeAssertions.h", |
| 86 "StaticConstructors.h", |
| 87 "Time.h", |
| 88 "TriState.h", |
| 82 "TypeTraits.h", | 89 "TypeTraits.h", |
| 83 "WTFExport.h", | 90 "WTFExport.h", |
| 84 "build_config.h", | 91 "build_config.h", |
| 85 ] | 92 ] |
| 86 | 93 |
| 87 configs += [ | 94 configs += [ |
| 88 "//third_party/WebKit/Source:config", | 95 "//third_party/WebKit/Source:config", |
| 89 "//third_party/WebKit/Source:non_test_config", | 96 "//third_party/WebKit/Source:non_test_config", |
| 90 "//third_party/WebKit/Source:blink_pch", | 97 "//third_party/WebKit/Source:blink_pch", |
| 91 ] | 98 ] |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 # "text/AtomicStringCF.cpp", | 144 # "text/AtomicStringCF.cpp", |
| 138 # "text/StringImplCF.cpp", | 145 # "text/StringImplCF.cpp", |
| 139 # ] | 146 # ] |
| 140 } | 147 } |
| 141 | 148 |
| 142 if (remove_webcore_debug_symbols) { | 149 if (remove_webcore_debug_symbols) { |
| 143 configs -= [ "//build/config/compiler:default_symbols" ] | 150 configs -= [ "//build/config/compiler:default_symbols" ] |
| 144 configs += [ "//build/config/compiler:no_symbols" ] | 151 configs += [ "//build/config/compiler:no_symbols" ] |
| 145 } | 152 } |
| 146 } | 153 } |
| OLD | NEW |