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

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

Issue 2520863002: Enable precompiled headers for Blink on Windows. (Closed)
Patch Set: rebased 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 import("//build/split_static_library.gni") 5 import("//build/split_static_library.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni")
10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "//") 74 "//")
75 75
76 configs += [ 76 configs += [
77 ":modules_implementation", 77 ":modules_implementation",
78 78
79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
80 "//build/config/compiler:no_size_t_to_int_warning", 80 "//build/config/compiler:no_size_t_to_int_warning",
81 "//third_party/WebKit/Source:config", 81 "//third_party/WebKit/Source:config",
82 "//third_party/WebKit/Source:non_test_config", 82 "//third_party/WebKit/Source:non_test_config",
83 "//third_party/WebKit/Source:inside_blink", 83 "//third_party/WebKit/Source:inside_blink",
84 "//third_party/WebKit/Source/core:blink_core_pch",
84 ] 85 ]
85 86
86 deps = [ 87 deps = [
87 ":make_modules_generated", 88 ":make_modules_generated",
88 ":module_names", 89 ":module_names",
89 "//device/geolocation/public/interfaces:interfaces_blink", 90 "//device/geolocation/public/interfaces:interfaces_blink",
90 "//third_party/WebKit/Source/bindings/modules:generated", 91 "//third_party/WebKit/Source/bindings/modules:generated",
91 "//third_party/WebKit/Source/core", 92 "//third_party/WebKit/Source/core",
92 "//third_party/WebKit/Source/modules/accessibility", 93 "//third_party/WebKit/Source/modules/accessibility",
93 "//third_party/WebKit/Source/modules/app_banner", 94 "//third_party/WebKit/Source/modules/app_banner",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 "speech/testing/PlatformSpeechSynthesizerMock.h", 192 "speech/testing/PlatformSpeechSynthesizerMock.h",
192 "vibration/testing/InternalsVibration.cpp", 193 "vibration/testing/InternalsVibration.cpp",
193 "vibration/testing/InternalsVibration.h", 194 "vibration/testing/InternalsVibration.h",
194 "webaudio/testing/InternalsWebAudio.cpp", 195 "webaudio/testing/InternalsWebAudio.cpp",
195 "webaudio/testing/InternalsWebAudio.h", 196 "webaudio/testing/InternalsWebAudio.h",
196 ] 197 ]
197 198
198 configs += [ 199 configs += [
199 "//third_party/WebKit/Source:config", 200 "//third_party/WebKit/Source:config",
200 "//third_party/WebKit/Source:inside_blink", 201 "//third_party/WebKit/Source:inside_blink",
202 "//third_party/WebKit/Source/core:blink_core_pch",
201 ] 203 ]
202 204
203 deps = [ 205 deps = [
204 "//third_party/WebKit/Source/core", 206 "//third_party/WebKit/Source/core",
205 "//third_party/WebKit/Source/modules", 207 "//third_party/WebKit/Source/modules",
206 ] 208 ]
207 } 209 }
208 210
209 group("make_modules_generated") { 211 group("make_modules_generated") {
210 public_deps = [ 212 public_deps = [
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "webaudio/ScriptProcessorNodeTest.cpp", 282 "webaudio/ScriptProcessorNodeTest.cpp",
281 "webaudio/StereoPannerNodeTest.cpp", 283 "webaudio/StereoPannerNodeTest.cpp",
282 "webdatabase/QuotaTrackerTest.cpp", 284 "webdatabase/QuotaTrackerTest.cpp",
283 "websockets/DOMWebSocketTest.cpp", 285 "websockets/DOMWebSocketTest.cpp",
284 "websockets/DocumentWebSocketChannelTest.cpp", 286 "websockets/DocumentWebSocketChannelTest.cpp",
285 ] 287 ]
286 288
287 configs += [ 289 configs += [
288 "//third_party/WebKit/Source:config", 290 "//third_party/WebKit/Source:config",
289 "//third_party/WebKit/Source:inside_blink", 291 "//third_party/WebKit/Source:inside_blink",
292 "//third_party/WebKit/Source/core:blink_core_pch",
290 ] 293 ]
291 294
292 deps = [ 295 deps = [
293 ":modules", 296 ":modules",
294 ":modules_testing", 297 ":modules_testing",
295 "//components/payments:payment_request_blink", 298 "//components/payments:payment_request_blink",
296 "//skia", 299 "//skia",
297 "//testing/gmock", 300 "//testing/gmock",
298 "//testing/gtest", 301 "//testing/gtest",
299 "//third_party/WebKit/Source/core", 302 "//third_party/WebKit/Source/core",
300 "//third_party/WebKit/Source/wtf", 303 "//third_party/WebKit/Source/wtf",
301 "//v8", 304 "//v8",
302 ] 305 ]
303 } 306 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/xml/XPathGrammar.y ('k') | third_party/WebKit/Source/modules/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698