| 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 += [ | 35 configs += [ "//content:content_implementation" ] |
| 36 "//content:content_implementation", | |
| 37 "//content/public/common:mojo_shell_client", | |
| 38 ] | |
| 39 | 36 |
| 40 deps = [ | 37 deps = [ |
| 41 "//base", | 38 "//base", |
| 42 "//content:export", | 39 "//content:export", |
| 43 "//content/public/child:child_sources", | 40 "//content/public/child:child_sources", |
| 44 "//content/public/common:common_sources", | 41 "//content/public/common:common_sources", |
| 45 "//mojo/application/public/interfaces", | 42 "//mojo/application/public/interfaces", |
| 46 "//ppapi/proxy:ipc", | 43 "//ppapi/proxy:ipc", |
| 47 "//skia", | 44 "//skia", |
| 48 "//third_party/icu", | 45 "//third_party/icu", |
| 49 "//third_party/WebKit/public:blink", | 46 "//third_party/WebKit/public:blink", |
| 50 "//ui/base", | 47 "//ui/base", |
| 51 "//ui/gfx", | 48 "//ui/gfx", |
| 52 "//ui/gfx/geometry", | 49 "//ui/gfx/geometry", |
| 53 ] | 50 ] |
| 54 } | 51 } |
| OLD | NEW |