| Index: ios/clean/chrome/browser/ui/web_contents/BUILD.gn
|
| diff --git a/ios/clean/chrome/browser/ui/web_contents/BUILD.gn b/ios/clean/chrome/browser/ui/web_contents/BUILD.gn
|
| index 13a0a73dc27f39be8fa7f74ea61c219627637741..58549505f22553822ad0539c6e9f98c913618af2 100644
|
| --- a/ios/clean/chrome/browser/ui/web_contents/BUILD.gn
|
| +++ b/ios/clean/chrome/browser/ui/web_contents/BUILD.gn
|
| @@ -4,8 +4,8 @@
|
|
|
| source_set("web_contents") {
|
| sources = [
|
| - "web_contents_view_controller.h",
|
| - "web_contents_view_controller.mm",
|
| + "web_contents_mediator.h",
|
| + "web_contents_mediator.mm",
|
| "web_coordinator.h",
|
| "web_coordinator.mm",
|
| ]
|
| @@ -13,6 +13,7 @@ source_set("web_contents") {
|
| configs += [ "//build/config/compiler:enable_arc" ]
|
|
|
| deps = [
|
| + ":web_contents_ui",
|
| "//ios/clean/chrome/browser",
|
| "//ios/shared/chrome/browser/coordinator_context",
|
| "//ios/web",
|
| @@ -20,3 +21,13 @@ source_set("web_contents") {
|
| "//url",
|
| ]
|
| }
|
| +
|
| +source_set("web_contents_ui") {
|
| + sources = [
|
| + "web_contents_consumer.h",
|
| + "web_contents_view_controller.h",
|
| + "web_contents_view_controller.mm",
|
| + ]
|
| +
|
| + configs += [ "//build/config/compiler:enable_arc" ]
|
| +}
|
|
|