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

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

Issue 1856963002: Remove content/public/plugin and chrome/plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_03_content_child_npapi
Patch Set: rebase Created 4 years, 8 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
« no previous file with comments | « content/content_ppapi_plugin.gypi ('k') | content/ppapi_plugin/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 group("ppapi_plugin") { 5 group("ppapi_plugin") {
6 visibility = [ "//content/*" ] # This is an internal content API. 6 visibility = [ "//content/*" ] # This is an internal content API.
7 7
8 if (is_component_build) { 8 if (is_component_build) {
9 public_deps = [ 9 public_deps = [
10 "//content", 10 "//content",
11 ] 11 ]
12 } else { 12 } else {
13 public_deps = [ 13 public_deps = [
14 ":ppapi_plugin_sources", 14 ":ppapi_plugin_sources",
15 ] 15 ]
16 } 16 }
17 } 17 }
18 18
19 source_set("ppapi_plugin_sources") { 19 source_set("ppapi_plugin_sources") {
20 # Depend on via ":ppapi_plugin above. 20 # Depend on via ":ppapi_plugin above.
21 visibility = [ 21 visibility = [
22 ":ppapi_plugin", 22 ":ppapi_plugin",
23 "//content", # For the component build. 23 "//content", # For the component build.
24 "//gin",
24 ] 25 ]
25 26
26 sources = [ 27 sources = [
27 "broker_process_dispatcher.cc", 28 "broker_process_dispatcher.cc",
28 "broker_process_dispatcher.h", 29 "broker_process_dispatcher.h",
29 "plugin_process_dispatcher.cc", 30 "plugin_process_dispatcher.cc",
30 "plugin_process_dispatcher.h", 31 "plugin_process_dispatcher.h",
31 "ppapi_blink_platform_impl.cc", 32 "ppapi_blink_platform_impl.cc",
32 "ppapi_blink_platform_impl.h", 33 "ppapi_blink_platform_impl.h",
33 "ppapi_broker_main.cc", 34 "ppapi_broker_main.cc",
34 "ppapi_plugin_main.cc", 35 "ppapi_plugin_main.cc",
35 "ppapi_thread.cc", 36 "ppapi_thread.cc",
36 "ppapi_thread.h", 37 "ppapi_thread.h",
37 ] 38 ]
38 39
39 configs += [ "//content:content_implementation" ] 40 configs += [
41 "//content:content_implementation",
42 "//v8:external_startup_data",
43 ]
40 44
41 deps = [ 45 deps = [
42 "//base", 46 "//base",
43 "//content:export", 47 "//content:export",
44 "//content/public/child:child_sources", 48 "//content/public/child:child_sources",
45 "//content/public/common:common_sources", 49 "//content/public/common:common_sources",
46 "//mojo/shell/public/interfaces", 50 "//mojo/shell/public/interfaces",
47 "//ppapi/proxy:ipc", 51 "//ppapi/proxy:ipc",
48 "//skia", 52 "//skia",
49 "//third_party/WebKit/public:blink", 53 "//third_party/WebKit/public:blink",
50 "//third_party/icu", 54 "//third_party/icu",
51 "//ui/base", 55 "//ui/base",
52 "//ui/gfx", 56 "//ui/gfx",
53 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
54 ] 58 ]
55 } 59 }
OLDNEW
« no previous file with comments | « content/content_ppapi_plugin.gypi ('k') | content/ppapi_plugin/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698