Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(227)

Side by Side Diff: content/shell/BUILD.gn

Issue 2132983002: Move content shell context menu to ShellWebContentsViewDelegate in Views (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "browser/shell_quota_permission_context.cc", 142 "browser/shell_quota_permission_context.cc",
143 "browser/shell_quota_permission_context.h", 143 "browser/shell_quota_permission_context.h",
144 "browser/shell_resource_dispatcher_host_delegate.cc", 144 "browser/shell_resource_dispatcher_host_delegate.cc",
145 "browser/shell_resource_dispatcher_host_delegate.h", 145 "browser/shell_resource_dispatcher_host_delegate.h",
146 "browser/shell_speech_recognition_manager_delegate.cc", 146 "browser/shell_speech_recognition_manager_delegate.cc",
147 "browser/shell_speech_recognition_manager_delegate.h", 147 "browser/shell_speech_recognition_manager_delegate.h",
148 "browser/shell_url_request_context_getter.cc", 148 "browser/shell_url_request_context_getter.cc",
149 "browser/shell_url_request_context_getter.h", 149 "browser/shell_url_request_context_getter.h",
150 "browser/shell_web_contents_view_delegate.h", 150 "browser/shell_web_contents_view_delegate.h",
151 "browser/shell_web_contents_view_delegate_android.cc", 151 "browser/shell_web_contents_view_delegate_android.cc",
152 "browser/shell_web_contents_view_delegate_aura.cc",
152 "browser/shell_web_contents_view_delegate_creator.h", 153 "browser/shell_web_contents_view_delegate_creator.h",
153 "browser/shell_web_contents_view_delegate_mac.mm", 154 "browser/shell_web_contents_view_delegate_mac.mm",
154 "browser/shell_web_contents_view_delegate_win.cc",
155 "common/layout_test/layout_test_content_client.cc", 155 "common/layout_test/layout_test_content_client.cc",
156 "common/layout_test/layout_test_content_client.h", 156 "common/layout_test/layout_test_content_client.h",
157 "common/layout_test/layout_test_messages.cc", 157 "common/layout_test/layout_test_messages.cc",
158 "common/layout_test/layout_test_messages.h", 158 "common/layout_test/layout_test_messages.h",
159 "common/layout_test/layout_test_switches.cc", 159 "common/layout_test/layout_test_switches.cc",
160 "common/layout_test/layout_test_switches.h", 160 "common/layout_test/layout_test_switches.h",
161 "common/leak_detection_result.h", 161 "common/leak_detection_result.h",
162 "common/shell_content_client.cc", 162 "common/shell_content_client.cc",
163 "common/shell_content_client.h", 163 "common/shell_content_client.h",
164 "common/shell_messages.cc", 164 "common/shell_messages.cc",
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "//ui/views/controls/webview", 328 "//ui/views/controls/webview",
329 "//ui/wm:test_support", 329 "//ui/wm:test_support",
330 ] 330 ]
331 } else { 331 } else {
332 sources += [ "browser/shell_aura.cc" ] 332 sources += [ "browser/shell_aura.cc" ]
333 } 333 }
334 } else { 334 } else {
335 sources -= [ 335 sources -= [
336 "browser/shell_platform_data_aura.cc", 336 "browser/shell_platform_data_aura.cc",
337 "browser/shell_platform_data_aura.h", 337 "browser/shell_platform_data_aura.h",
338 "browser/shell_web_contents_view_delegate_aura.cc",
338 ] 339 ]
339 } 340 }
340 341
341 if (is_chromeos) { 342 if (is_chromeos) {
342 deps += [ 343 deps += [
343 "//chromeos", 344 "//chromeos",
344 "//ui/wm:test_support", 345 "//ui/wm:test_support",
345 ] 346 ]
346 } 347 }
347 348
(...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 "{{bundle_resources_dir}}/{{source_file_part}}", 724 "{{bundle_resources_dir}}/{{source_file_part}}",
724 ] 725 ]
725 } 726 }
726 } 727 }
727 728
728 mojom("mojo_bindings") { 729 mojom("mojo_bindings") {
729 sources = [ 730 sources = [
730 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", 731 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
731 ] 732 ]
732 } 733 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698