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

Unified Diff: third_party/WebKit/Source/modules/BUILD.gn

Issue 2867693004: Snapshot of all changes to get jumbo in blink and content.
Patch Set: Rebased again Created 3 years, 5 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/BUILD.gn
diff --git a/third_party/WebKit/Source/modules/BUILD.gn b/third_party/WebKit/Source/modules/BUILD.gn
index 4a9788399ec2bce6d693df9d3ad6836b3a0e0023..1d98dee6ab3b15fbe539af7a0d3ad66ff8f7fab3 100644
--- a/third_party/WebKit/Source/modules/BUILD.gn
+++ b/third_party/WebKit/Source/modules/BUILD.gn
@@ -43,7 +43,13 @@ make_names("module_names") {
deps = [] # Don't use default deps (otherwise it will be circular).
}
-target(modules_target_type, "modules") {
+if (modules_target_type == "component") {
+ jumbo_target_type = "jumbo_component"
+} else {
+ jumbo_target_type = "jumbo_target"
+}
+target(jumbo_target_type, "modules") {
+ target_type = modules_target_type
output_name = "blink_modules"
if (modules_target_type == "split_static_library") {
@@ -174,7 +180,7 @@ target(modules_target_type, "modules") {
}
}
-source_set("modules_testing") {
+blink_unit_test_source_set("modules_testing") {
sources = [
"$bindings_modules_v8_output_dir/V8InternalsPartial.cpp",
"$bindings_modules_v8_output_dir/V8InternalsPartial.h",
@@ -226,7 +232,7 @@ group("make_modules_generated") {
]
}
-source_set("unit_tests") {
+blink_unit_test_source_set("unit_tests") {
testonly = true
sources = [
@@ -264,6 +270,7 @@ source_set("unit_tests") {
"filesystem/DOMFileSystemBaseTest.cpp",
"indexeddb/IDBKeyPathTest.cpp",
"indexeddb/IDBRequestTest.cpp",
+ "indexeddb/IDBTestHelper.cpp",
"indexeddb/IDBTransactionTest.cpp",
"indexeddb/IDBValueWrappingTest.cpp",
"indexeddb/MockWebIDBDatabase.cpp",
« no previous file with comments | « third_party/WebKit/Source/core/inspector/InspectorPageAgent.cpp ('k') | third_party/WebKit/Source/modules/fetch/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698