OLD | NEW |
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/*" ] | 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 visibility = [ "//content/*" ] | 20 # Depend on via ":ppapi_plugin above. |
| 21 visibility = [ |
| 22 ":ppapi_plugin", |
| 23 "//content", # For the component build. |
| 24 ] |
21 | 25 |
22 sources = [ | 26 sources = [ |
23 "broker_process_dispatcher.cc", | 27 "broker_process_dispatcher.cc", |
24 "broker_process_dispatcher.h", | 28 "broker_process_dispatcher.h", |
25 "plugin_process_dispatcher.cc", | 29 "plugin_process_dispatcher.cc", |
26 "plugin_process_dispatcher.h", | 30 "plugin_process_dispatcher.h", |
27 "ppapi_blink_platform_impl.cc", | 31 "ppapi_blink_platform_impl.cc", |
28 "ppapi_blink_platform_impl.h", | 32 "ppapi_blink_platform_impl.h", |
29 "ppapi_broker_main.cc", | 33 "ppapi_broker_main.cc", |
30 "ppapi_plugin_main.cc", | 34 "ppapi_plugin_main.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
42 "//mojo/shell/public/interfaces", | 46 "//mojo/shell/public/interfaces", |
43 "//ppapi/proxy:ipc", | 47 "//ppapi/proxy:ipc", |
44 "//skia", | 48 "//skia", |
45 "//third_party/WebKit/public:blink", | 49 "//third_party/WebKit/public:blink", |
46 "//third_party/icu", | 50 "//third_party/icu", |
47 "//ui/base", | 51 "//ui/base", |
48 "//ui/gfx", | 52 "//ui/gfx", |
49 "//ui/gfx/geometry", | 53 "//ui/gfx/geometry", |
50 ] | 54 ] |
51 } | 55 } |
OLD | NEW |