| Index: content/shell/BUILD.gn
|
| diff --git a/content/shell/BUILD.gn b/content/shell/BUILD.gn
|
| index 01ad049b84c9dc15efd2af5b55378fd504d50698..2f815c753d475837d3ac5401ebe95f69c9120f19 100644
|
| --- a/content/shell/BUILD.gn
|
| +++ b/content/shell/BUILD.gn
|
| @@ -151,7 +151,6 @@ static_library("content_shell_lib") {
|
| "browser/shell_web_contents_view_delegate_android.cc",
|
| "browser/shell_web_contents_view_delegate_creator.h",
|
| "browser/shell_web_contents_view_delegate_mac.mm",
|
| - "browser/shell_web_contents_view_delegate_win.cc",
|
| "common/layout_test/layout_test_content_client.cc",
|
| "common/layout_test/layout_test_content_client.h",
|
| "common/layout_test/layout_test_messages.cc",
|
| @@ -320,7 +319,10 @@ static_library("content_shell_lib") {
|
| ]
|
|
|
| if (toolkit_views) {
|
| - sources += [ "browser/shell_views.cc" ]
|
| + sources += [
|
| + "browser/shell_views.cc",
|
| + "browser/shell_web_contents_view_delegate_views.cc",
|
| + ]
|
| deps += [
|
| "//ui/resources",
|
| "//ui/views",
|
| @@ -329,7 +331,10 @@ static_library("content_shell_lib") {
|
| "//ui/wm:test_support",
|
| ]
|
| } else {
|
| - sources += [ "browser/shell_aura.cc" ]
|
| + sources += [
|
| + "browser/shell_aura.cc",
|
| + "browser/shell_web_contents_view_delegate_aura.cc",
|
| + ]
|
| }
|
| } else {
|
| sources -= [
|
|
|