summaryrefslogtreecommitdiffstats
path: root/content/public/plugin/BUILD.gn
blob: e4c4d3681933cc26923da160a63f76c471202bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# See //content/BUILD.gn for how this works.
group("plugin") {
  if (is_component_build) {
    public_deps = [
      "//content",
    ]
  } else {
    public_deps = [
      ":plugin_sources",
    ]
  }
}

source_set("plugin_sources") {
  visibility = [ "//content/*" ]

  sources = [
    "content_plugin_client.h",
  ]

  deps = [
    "//base",
    "//content/plugin",
    "//content/public/common:common_sources",
  ]
}