| 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",
|
|
|