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 source_set("ppapi_plugin") { | 5 source_set("ppapi_plugin") { |
| 6 visibility = [ "//content/*" ] |
| 7 |
6 sources = [ | 8 sources = [ |
7 "broker_process_dispatcher.cc", | 9 "broker_process_dispatcher.cc", |
8 "broker_process_dispatcher.h", | 10 "broker_process_dispatcher.h", |
9 "plugin_process_dispatcher.cc", | 11 "plugin_process_dispatcher.cc", |
10 "plugin_process_dispatcher.h", | 12 "plugin_process_dispatcher.h", |
11 "ppapi_broker_main.cc", | 13 "ppapi_broker_main.cc", |
12 "ppapi_plugin_main.cc", | 14 "ppapi_plugin_main.cc", |
13 "ppapi_thread.cc", | 15 "ppapi_thread.cc", |
14 "ppapi_thread.h", | 16 "ppapi_thread.h", |
15 "ppapi_webkitplatformsupport_impl.cc", | 17 "ppapi_webkitplatformsupport_impl.cc", |
16 "ppapi_webkitplatformsupport_impl.h", | 18 "ppapi_webkitplatformsupport_impl.h", |
17 ] | 19 ] |
18 | 20 |
19 configs += [ "//content:content_implementation" ] | 21 configs += [ "//content:content_implementation" ] |
20 | 22 |
21 deps = [ | 23 deps = [ |
22 "//base", | 24 "//base", |
23 "//content:export", | 25 "//content:export", |
| 26 "//content/public/child:child_sources", |
| 27 "//content/public/common:common_sources", |
24 "//mojo/public/interfaces/application", | 28 "//mojo/public/interfaces/application", |
25 "//ppapi:ppapi_ipc", | 29 "//ppapi:ppapi_ipc", |
26 "//skia", | 30 "//skia", |
27 "//third_party/icu", | 31 "//third_party/icu", |
28 "//third_party/WebKit/public:blink", | 32 "//third_party/WebKit/public:blink", |
29 "//ui/base", | 33 "//ui/base", |
30 "//ui/gfx", | 34 "//ui/gfx", |
31 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
32 ] | 36 ] |
33 } | 37 } |
OLD | NEW |