| 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 import("//ppapi/features/features.gni") |
| 6 |
| 7 assert(enable_plugins, "PPAPI plugins must be enabled.") |
| 8 |
| 5 group("ppapi_plugin") { | 9 group("ppapi_plugin") { |
| 6 visibility = [ "//content/*" ] # This is an internal content API. | 10 visibility = [ "//content/*" ] # This is an internal content API. |
| 7 | 11 |
| 8 if (is_component_build) { | 12 if (is_component_build) { |
| 9 public_deps = [ | 13 public_deps = [ |
| 10 "//content", | 14 "//content", |
| 11 ] | 15 ] |
| 12 } else { | 16 } else { |
| 13 public_deps = [ | 17 public_deps = [ |
| 14 ":ppapi_plugin_sources", | 18 ":ppapi_plugin_sources", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "//third_party/icu", | 68 "//third_party/icu", |
| 65 "//ui/base", | 69 "//ui/base", |
| 66 "//ui/gfx", | 70 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 71 "//ui/gfx/geometry", |
| 68 ] | 72 ] |
| 69 | 73 |
| 70 if (is_win) { | 74 if (is_win) { |
| 71 deps += [ "//ui/display" ] | 75 deps += [ "//ui/display" ] |
| 72 } | 76 } |
| 73 } | 77 } |
| OLD | NEW |