| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "typed_arrays/IntegralTypedArrayBase.h", | 240 "typed_arrays/IntegralTypedArrayBase.h", |
| 241 "typed_arrays/TypedArrayBase.h", | 241 "typed_arrays/TypedArrayBase.h", |
| 242 "typed_arrays/Uint16Array.h", | 242 "typed_arrays/Uint16Array.h", |
| 243 "typed_arrays/Uint32Array.h", | 243 "typed_arrays/Uint32Array.h", |
| 244 "typed_arrays/Uint8Array.h", | 244 "typed_arrays/Uint8Array.h", |
| 245 ] | 245 ] |
| 246 | 246 |
| 247 configs += [ | 247 configs += [ |
| 248 "//third_party/WebKit/Source:config", | 248 "//third_party/WebKit/Source:config", |
| 249 "//third_party/WebKit/Source:non_test_config", | 249 "//third_party/WebKit/Source:non_test_config", |
| 250 "//third_party/WebKit/Source:blink_pch", |
| 250 ] | 251 ] |
| 251 | 252 |
| 252 defines = [ "WTF_IMPLEMENTATION=1" ] | 253 defines = [ "WTF_IMPLEMENTATION=1" ] |
| 253 | 254 |
| 254 public_configs = [ | 255 public_configs = [ |
| 255 ":wtf_config", | 256 ":wtf_config", |
| 256 | 257 |
| 257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 258 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 258 "//build/config/compiler:no_size_t_to_int_warning", | 259 "//build/config/compiler:no_size_t_to_int_warning", |
| 259 "//third_party/WebKit/Source:features", | 260 "//third_party/WebKit/Source:features", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 "typed_arrays/ArrayBufferBuilderTest.cpp", | 345 "typed_arrays/ArrayBufferBuilderTest.cpp", |
| 345 ] | 346 ] |
| 346 | 347 |
| 347 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 348 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 348 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 349 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 349 | 350 |
| 350 if (is_win) { | 351 if (is_win) { |
| 351 cflags = [ "/wd4068" ] # Unknown pragma. | 352 cflags = [ "/wd4068" ] # Unknown pragma. |
| 352 } | 353 } |
| 353 | 354 |
| 354 configs += [ "//third_party/WebKit/Source:config" ] | 355 configs += [ |
| 356 "//third_party/WebKit/Source:config", |
| 357 "//third_party/WebKit/Source:blink_pch", |
| 358 ] |
| 355 | 359 |
| 356 deps = [ | 360 deps = [ |
| 357 ":wtf", | 361 ":wtf", |
| 358 "//base", | 362 "//base", |
| 359 "//base/test:test_support", | 363 "//base/test:test_support", |
| 360 "//testing/gmock", | 364 "//testing/gmock", |
| 361 "//testing/gtest", | 365 "//testing/gtest", |
| 362 ] | 366 ] |
| 363 } | 367 } |
| OLD | NEW |