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/*" ] |
7 | 7 |
8 if (is_component_build) { | 8 if (is_component_build) { |
9 public_deps = [ | 9 public_deps = [ |
10 "//content", | 10 "//content", |
(...skipping 14 matching lines...) Expand all Loading... |
25 "plugin_process_dispatcher.cc", | 25 "plugin_process_dispatcher.cc", |
26 "plugin_process_dispatcher.h", | 26 "plugin_process_dispatcher.h", |
27 "ppapi_blink_platform_impl.cc", | 27 "ppapi_blink_platform_impl.cc", |
28 "ppapi_blink_platform_impl.h", | 28 "ppapi_blink_platform_impl.h", |
29 "ppapi_broker_main.cc", | 29 "ppapi_broker_main.cc", |
30 "ppapi_plugin_main.cc", | 30 "ppapi_plugin_main.cc", |
31 "ppapi_thread.cc", | 31 "ppapi_thread.cc", |
32 "ppapi_thread.h", | 32 "ppapi_thread.h", |
33 ] | 33 ] |
34 | 34 |
35 configs += [ "//content:content_implementation" ] | 35 configs += [ |
| 36 "//content:content_implementation", |
| 37 "//content/public/common:mojo_shell_client", |
| 38 ] |
36 | 39 |
37 deps = [ | 40 deps = [ |
38 "//base", | 41 "//base", |
39 "//content:export", | 42 "//content:export", |
40 "//content/public/child:child_sources", | 43 "//content/public/child:child_sources", |
41 "//content/public/common:common_sources", | 44 "//content/public/common:common_sources", |
42 "//mojo/application/public/interfaces", | 45 "//mojo/application/public/interfaces", |
43 "//ppapi/proxy:ipc", | 46 "//ppapi/proxy:ipc", |
44 "//skia", | 47 "//skia", |
45 "//third_party/icu", | 48 "//third_party/icu", |
46 "//third_party/WebKit/public:blink", | 49 "//third_party/WebKit/public:blink", |
47 "//ui/base", | 50 "//ui/base", |
48 "//ui/gfx", | 51 "//ui/gfx", |
49 "//ui/gfx/geometry", | 52 "//ui/gfx/geometry", |
50 ] | 53 ] |
51 } | 54 } |
OLD | NEW |