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