summaryrefslogtreecommitdiffstats
path: root/components/renderer_context_menu/BUILD.gn
blob: b2a3dda7d84a0299da22626fd3a496c0638afea6 (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
31
32
# 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.

import("//build/config/ui.gni")

static_library("renderer_context_menu") {
  sources = [
    "context_menu_content_type.cc",
    "context_menu_content_type.h",
    "context_menu_delegate.cc",
    "context_menu_delegate.h",
    "render_view_context_menu_base.cc",
    "render_view_context_menu_base.h",
    "render_view_context_menu_observer.cc",
    "render_view_context_menu_observer.h",
    "render_view_context_menu_proxy.h",
  ]

  if (toolkit_views) {
    sources += [
      "views/toolkit_delegate_views.cc",
      "views/toolkit_delegate_views.h",
    ]
  }

  deps = [
    "//base",
    "//content/public/browser",
    "//components/search_engines",
  ]
}