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

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

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: Created 4 years 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 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
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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 "typed_arrays/ArrayBufferBuilderTest.cpp", 346 "typed_arrays/ArrayBufferBuilderTest.cpp",
346 ] 347 ]
347 348
348 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 349 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
349 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 350 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
350 351
351 if (is_win) { 352 if (is_win) {
352 cflags = [ "/wd4068" ] # Unknown pragma. 353 cflags = [ "/wd4068" ] # Unknown pragma.
353 } 354 }
354 355
355 configs += [ "//third_party/WebKit/Source:config" ] 356 configs += [
357 "//third_party/WebKit/Source:config",
358 "//third_party/WebKit/Source:blink_pch",
359 ]
356 360
357 deps = [ 361 deps = [
358 ":wtf", 362 ":wtf",
359 "//base", 363 "//base",
360 "//base/test:test_support", 364 "//base/test:test_support",
361 "//testing/gmock", 365 "//testing/gmock",
362 "//testing/gtest", 366 "//testing/gtest",
363 ] 367 ]
364 } 368 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698