| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 "text/TextCodecUTF16.h", | 145 "text/TextCodecUTF16.h", |
| 146 "text/TextCodecUTF8.h", | 146 "text/TextCodecUTF8.h", |
| 147 "text/TextCodecUserDefined.h", | 147 "text/TextCodecUserDefined.h", |
| 148 "text/TextEncoding.h", | 148 "text/TextEncoding.h", |
| 149 "text/TextEncodingRegistry.h", | 149 "text/TextEncodingRegistry.h", |
| 150 "text/TextPosition.h", | 150 "text/TextPosition.h", |
| 151 "text/UTF8.h", | 151 "text/UTF8.h", |
| 152 "text/Unicode.h", | 152 "text/Unicode.h", |
| 153 "text/WTFString.h", | 153 "text/WTFString.h", |
| 154 "text/icu/UnicodeIcu.h", | 154 "text/icu/UnicodeIcu.h", |
| 155 "typed_arrays/ArrayBuffer.cpp", | |
| 156 "typed_arrays/ArrayBuffer.h", | 155 "typed_arrays/ArrayBuffer.h", |
| 157 "typed_arrays/ArrayBufferBuilder.cpp", | |
| 158 "typed_arrays/ArrayBufferBuilder.h", | 156 "typed_arrays/ArrayBufferBuilder.h", |
| 159 "typed_arrays/ArrayBufferContents.cpp", | |
| 160 "typed_arrays/ArrayBufferContents.h", | 157 "typed_arrays/ArrayBufferContents.h", |
| 161 "typed_arrays/ArrayBufferView.cpp", | |
| 162 "typed_arrays/ArrayBufferView.h", | 158 "typed_arrays/ArrayBufferView.h", |
| 163 "typed_arrays/ArrayPiece.cpp", | |
| 164 "typed_arrays/ArrayPiece.h", | 159 "typed_arrays/ArrayPiece.h", |
| 165 "typed_arrays/Float32Array.h", | 160 "typed_arrays/Float32Array.h", |
| 166 "typed_arrays/Float64Array.h", | 161 "typed_arrays/Float64Array.h", |
| 167 "typed_arrays/Int16Array.h", | 162 "typed_arrays/Int16Array.h", |
| 168 "typed_arrays/Int32Array.h", | 163 "typed_arrays/Int32Array.h", |
| 169 "typed_arrays/Int8Array.h", | 164 "typed_arrays/Int8Array.h", |
| 170 "typed_arrays/IntegralTypedArrayBase.h", | 165 "typed_arrays/IntegralTypedArrayBase.h", |
| 171 "typed_arrays/TypedArrayBase.h", | 166 "typed_arrays/TypedArrayBase.h", |
| 172 "typed_arrays/Uint16Array.h", | 167 "typed_arrays/Uint16Array.h", |
| 173 "typed_arrays/Uint32Array.h", | 168 "typed_arrays/Uint32Array.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 ] | 280 ] |
| 286 | 281 |
| 287 deps = [ | 282 deps = [ |
| 288 ":wtf", | 283 ":wtf", |
| 289 "//base", | 284 "//base", |
| 290 "//base/test:test_support", | 285 "//base/test:test_support", |
| 291 "//testing/gmock", | 286 "//testing/gmock", |
| 292 "//testing/gtest", | 287 "//testing/gtest", |
| 293 ] | 288 ] |
| 294 } | 289 } |
| OLD | NEW |