OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 assert(!is_ios) | 5 assert(!is_ios) |
6 | 6 |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
9 | 9 |
10 visibility = [ | 10 visibility = [ |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 "dtoa/double-conversion.h", | 116 "dtoa/double-conversion.h", |
117 "dtoa/double.h", | 117 "dtoa/double.h", |
118 "dtoa/fast-dtoa.h", | 118 "dtoa/fast-dtoa.h", |
119 "dtoa/fixed-dtoa.h", | 119 "dtoa/fixed-dtoa.h", |
120 "dtoa/strtod.h", | 120 "dtoa/strtod.h", |
121 "dtoa/utils.h", | 121 "dtoa/utils.h", |
122 "text/ASCIIFastPath.h", | 122 "text/ASCIIFastPath.h", |
123 "text/AtomicString.h", | 123 "text/AtomicString.h", |
124 "text/AtomicStringHash.h", | 124 "text/AtomicStringHash.h", |
125 "text/AtomicStringTable.h", | 125 "text/AtomicStringTable.h", |
126 "text/Base64.cpp", | |
127 "text/Base64.h", | 126 "text/Base64.h", |
128 "text/CString.h", | 127 "text/CString.h", |
129 "text/CharacterNames.h", | 128 "text/CharacterNames.h", |
130 "text/Collator.h", | 129 "text/Collator.h", |
131 "text/IntegerToStringConversion.h", | 130 "text/IntegerToStringConversion.h", |
132 "text/ParsingUtilities.h", | 131 "text/ParsingUtilities.h", |
133 "text/StringBuffer.h", | 132 "text/StringBuffer.h", |
134 "text/StringBuilder.h", | 133 "text/StringBuilder.h", |
135 "text/StringConcatenate.h", | 134 "text/StringConcatenate.h", |
136 "text/StringHash.h", | 135 "text/StringHash.h", |
137 "text/StringImpl.h", | 136 "text/StringImpl.h", |
138 "text/StringOperators.h", | 137 "text/StringOperators.h", |
139 "text/StringToNumber.h", | 138 "text/StringToNumber.h", |
140 "text/StringUTF8Adaptor.h", | 139 "text/StringUTF8Adaptor.h", |
141 "text/StringView.h", | 140 "text/StringView.h", |
142 "text/TextCodec.cpp", | |
143 "text/TextCodec.h", | 141 "text/TextCodec.h", |
144 "text/TextCodecASCIIFastPath.h", | 142 "text/TextCodecASCIIFastPath.h", |
145 "text/TextCodecICU.cpp", | 143 "text/TextCodecLatin1.h", |
146 "text/TextCodecLatin1.cpp", | |
147 "text/TextCodecReplacement.cpp", | |
148 "text/TextCodecReplacement.h", | 144 "text/TextCodecReplacement.h", |
149 "text/TextCodecUTF16.cpp", | 145 "text/TextCodecUTF16.h", |
150 "text/TextCodecUTF8.cpp", | |
151 "text/TextCodecUTF8.h", | 146 "text/TextCodecUTF8.h", |
152 "text/TextCodecUserDefined.cpp", | 147 "text/TextCodecUserDefined.h", |
153 "text/TextEncoding.cpp", | 148 "text/TextEncoding.h", |
154 "text/TextEncodingRegistry.cpp", | 149 "text/TextEncodingRegistry.h", |
155 "text/TextPosition.cpp", | |
156 "text/TextPosition.h", | 150 "text/TextPosition.h", |
157 "text/UTF8.h", | 151 "text/UTF8.h", |
158 "text/Unicode.h", | 152 "text/Unicode.h", |
159 "text/WTFString.h", | 153 "text/WTFString.h", |
160 "text/icu/CollatorICU.cpp", | |
161 "text/icu/UnicodeIcu.h", | 154 "text/icu/UnicodeIcu.h", |
162 "typed_arrays/ArrayBuffer.cpp", | 155 "typed_arrays/ArrayBuffer.cpp", |
163 "typed_arrays/ArrayBuffer.h", | 156 "typed_arrays/ArrayBuffer.h", |
164 "typed_arrays/ArrayBufferBuilder.cpp", | 157 "typed_arrays/ArrayBufferBuilder.cpp", |
165 "typed_arrays/ArrayBufferBuilder.h", | 158 "typed_arrays/ArrayBufferBuilder.h", |
166 "typed_arrays/ArrayBufferContents.cpp", | 159 "typed_arrays/ArrayBufferContents.cpp", |
167 "typed_arrays/ArrayBufferContents.h", | 160 "typed_arrays/ArrayBufferContents.h", |
168 "typed_arrays/ArrayBufferView.cpp", | 161 "typed_arrays/ArrayBufferView.cpp", |
169 "typed_arrays/ArrayBufferView.h", | 162 "typed_arrays/ArrayBufferView.h", |
170 "typed_arrays/ArrayPiece.cpp", | 163 "typed_arrays/ArrayPiece.cpp", |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 ] | 285 ] |
293 | 286 |
294 deps = [ | 287 deps = [ |
295 ":wtf", | 288 ":wtf", |
296 "//base", | 289 "//base", |
297 "//base/test:test_support", | 290 "//base/test:test_support", |
298 "//testing/gmock", | 291 "//testing/gmock", |
299 "//testing/gtest", | 292 "//testing/gtest", |
300 ] | 293 ] |
301 } | 294 } |
OLD | NEW |