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

Side by Side Diff: components/renderer_context_menu/BUILD.gn

Issue 2512563003: Convert enable_plugins to a buildflag header. (Closed)
Patch Set: Merge Created 4 years, 1 month 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
« no previous file with comments | « components/plugins/renderer/BUILD.gn ('k') | components/renderer_context_menu/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 static_library("renderer_context_menu") { 7 static_library("renderer_context_menu") {
8 sources = [ 8 sources = [
9 "context_menu_content_type.cc", 9 "context_menu_content_type.cc",
10 "context_menu_content_type.h", 10 "context_menu_content_type.h",
11 "context_menu_delegate.cc", 11 "context_menu_delegate.cc",
12 "context_menu_delegate.h", 12 "context_menu_delegate.h",
13 "render_view_context_menu_base.cc", 13 "render_view_context_menu_base.cc",
14 "render_view_context_menu_base.h", 14 "render_view_context_menu_base.h",
15 "render_view_context_menu_observer.cc", 15 "render_view_context_menu_observer.cc",
16 "render_view_context_menu_observer.h", 16 "render_view_context_menu_observer.h",
17 "render_view_context_menu_proxy.h", 17 "render_view_context_menu_proxy.h",
18 ] 18 ]
19 19
20 deps = [ 20 deps = [
21 "//base", 21 "//base",
22 "//components/search_engines", 22 "//components/search_engines",
23 "//content/public/browser", 23 "//content/public/browser",
24 "//content/public/common", 24 "//content/public/common",
25 "//ppapi/features",
25 "//printing/features", 26 "//printing/features",
26 "//third_party/WebKit/public:blink_headers", 27 "//third_party/WebKit/public:blink_headers",
27 "//ui/base", 28 "//ui/base",
28 ] 29 ]
29 30
30 if (toolkit_views) { 31 if (toolkit_views) {
31 sources += [ 32 sources += [
32 "views/toolkit_delegate_views.cc", 33 "views/toolkit_delegate_views.cc",
33 "views/toolkit_delegate_views.h", 34 "views/toolkit_delegate_views.h",
34 ] 35 ]
35 deps += [ "//ui/views" ] 36 deps += [ "//ui/views" ]
36 } 37 }
37 } 38 }
OLDNEW
« no previous file with comments | « components/plugins/renderer/BUILD.gn ('k') | components/renderer_context_menu/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698