| Index: ios/chrome/app/BUILD.gn
|
| diff --git a/ios/chrome/app/BUILD.gn b/ios/chrome/app/BUILD.gn
|
| index bd7b4910597e74d825bad2026ccefde0ae63871b..f695ea5f99d28108c9e96c8b6ad3d9a805e6cc76 100644
|
| --- a/ios/chrome/app/BUILD.gn
|
| +++ b/ios/chrome/app/BUILD.gn
|
| @@ -32,3 +32,20 @@ source_set("unit_tests") {
|
| "//testing/gtest",
|
| ]
|
| }
|
| +
|
| +source_set("tests_hook") {
|
| + # This target is intentionally not test-only, as the main app depends on it.
|
| + sources = [
|
| + "tests_hook.h",
|
| + ]
|
| +}
|
| +
|
| +source_set("tests_fake_hook") {
|
| + # This target is intentionally not test-only, as the main app depends on it.
|
| + sources = [
|
| + "tests_fake_hook.mm",
|
| + ]
|
| + deps = [
|
| + ":tests_hook",
|
| + ]
|
| +}
|
|
|