| Index: components/omnibox/browser/BUILD.gn
|
| diff --git a/components/omnibox/browser/BUILD.gn b/components/omnibox/browser/BUILD.gn
|
| index fdef09dccb77d9647f5748c2eb10dd40675c6105..6f6ae1543ccc761ce06ebd78e69c83d88c5e010f 100644
|
| --- a/components/omnibox/browser/BUILD.gn
|
| +++ b/components/omnibox/browser/BUILD.gn
|
| @@ -191,6 +191,21 @@ static_library("test_support") {
|
| ]
|
| }
|
|
|
| +bundle_data("unit_tests_bundle_data") {
|
| + visibility = [ ":unit_tests" ]
|
| + testonly = true
|
| + sources = [
|
| + "//components/test/data/omnibox/Shortcuts.no_fill_into_edit.sql",
|
| + "//components/test/data/omnibox/Shortcuts.v0.sql",
|
| + "//components/test/data/omnibox/in_memory_url_index_test.db.txt",
|
| + "//components/test/data/omnibox/in_memory_url_index_test_limited.db.txt",
|
| + ]
|
| + outputs = [
|
| + "{{bundle_resources_dir}}/" +
|
| + "{{source_root_relative_dir}}/{{source_file_part}}",
|
| + ]
|
| +}
|
| +
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| @@ -223,6 +238,7 @@ source_set("unit_tests") {
|
| deps = [
|
| ":browser",
|
| ":test_support",
|
| + ":unit_tests_bundle_data",
|
| "//base",
|
| "//base/test:test_support",
|
| "//components/bookmarks/browser",
|
|
|