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 group("ppapi_plugin") { |
| 6 visibility = [ "//content/*" ] |
| 7 |
| 8 if (is_component_build) { |
| 9 public_deps = [ |
| 10 "//content", |
| 11 ] |
| 12 } else { |
| 13 public_deps = [ |
| 14 ":ppapi_plugin_sources", |
| 15 ] |
| 16 } |
| 17 } |
| 18 |
| 19 source_set("ppapi_plugin_sources") { |
6 visibility = [ "//content/*" ] | 20 visibility = [ "//content/*" ] |
7 | 21 |
8 sources = [ | 22 sources = [ |
9 "broker_process_dispatcher.cc", | 23 "broker_process_dispatcher.cc", |
10 "broker_process_dispatcher.h", | 24 "broker_process_dispatcher.h", |
11 "plugin_process_dispatcher.cc", | 25 "plugin_process_dispatcher.cc", |
12 "plugin_process_dispatcher.h", | 26 "plugin_process_dispatcher.h", |
13 "ppapi_blink_platform_impl.cc", | 27 "ppapi_blink_platform_impl.cc", |
14 "ppapi_blink_platform_impl.h", | 28 "ppapi_blink_platform_impl.h", |
15 "ppapi_broker_main.cc", | 29 "ppapi_broker_main.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
28 "//ppapi/proxy:ipc", | 42 "//ppapi/proxy:ipc", |
29 "//skia", | 43 "//skia", |
30 "//third_party/icu", | 44 "//third_party/icu", |
31 "//third_party/WebKit/public:blink", | 45 "//third_party/WebKit/public:blink", |
32 "//third_party/mojo/src/mojo/public/interfaces/application", | 46 "//third_party/mojo/src/mojo/public/interfaces/application", |
33 "//ui/base", | 47 "//ui/base", |
34 "//ui/gfx", | 48 "//ui/gfx", |
35 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
36 ] | 50 ] |
37 } | 51 } |
OLD | NEW |