| 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/*" ] # This is an internal content API. | 6 visibility = [ "//content/*" ] # This is an internal content API. |
| 7 | 7 |
| 8 if (is_component_build) { | 8 if (is_component_build) { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 "//content", | 10 "//content", |
| 11 ] | 11 ] |
| 12 } else { | 12 } else { |
| 13 public_deps = [ | 13 public_deps = [ |
| 14 ":ppapi_plugin_sources", | 14 ":ppapi_plugin_sources", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 } | 17 } |
| 18 | 18 |
| 19 source_set("ppapi_plugin_sources") { | 19 source_set("ppapi_plugin_sources") { |
| 20 # Depend on via ":ppapi_plugin above. | 20 # Depend on via ":ppapi_plugin above. |
| 21 visibility = [ | 21 visibility = [ |
| 22 ":ppapi_plugin", | 22 ":ppapi_plugin", |
| 23 "//content", # For the component build. | 23 "//content", # For the component build. |
| 24 "//content/app:*", | 24 "//content/app:*", |
| 25 "//gin", | 25 "//gin", |
| 26 "//services/service_manager/public/cpp", | |
| 27 ] | 26 ] |
| 28 | 27 |
| 29 sources = [ | 28 sources = [ |
| 30 "broker_process_dispatcher.cc", | 29 "broker_process_dispatcher.cc", |
| 31 "broker_process_dispatcher.h", | 30 "broker_process_dispatcher.h", |
| 32 "plugin_process_dispatcher.cc", | 31 "plugin_process_dispatcher.cc", |
| 33 "plugin_process_dispatcher.h", | 32 "plugin_process_dispatcher.h", |
| 34 "ppapi_blink_platform_impl.cc", | 33 "ppapi_blink_platform_impl.cc", |
| 35 "ppapi_blink_platform_impl.h", | 34 "ppapi_blink_platform_impl.h", |
| 36 "ppapi_broker_main.cc", | 35 "ppapi_broker_main.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 64 "//third_party/icu", | 63 "//third_party/icu", |
| 65 "//ui/base", | 64 "//ui/base", |
| 66 "//ui/gfx", | 65 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 66 "//ui/gfx/geometry", |
| 68 ] | 67 ] |
| 69 | 68 |
| 70 if (is_win) { | 69 if (is_win) { |
| 71 deps += [ "//ui/display" ] | 70 deps += [ "//ui/display" ] |
| 72 } | 71 } |
| 73 } | 72 } |
| OLD | NEW |