summaryrefslogtreecommitdiffstats
path: root/components/ui/zoom/BUILD.gn
blob: a3958b81623dc27ff507dc2f6d673c8b2cabe784 (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
# 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.

static_library("ui_zoom") {
  sources = [
    "page_zoom.cc",
    "page_zoom.h",
    "page_zoom_constants.cc",
    "page_zoom_constants.h",
    "zoom_controller.cc",
    "zoom_controller.h",
    "zoom_event_manager.cc",
    "zoom_event_manager.h",
    "zoom_observer.h",
  ]

  deps = [
    "//base",
    "//content/public/browser",
    "//content/public/common",
    "//ipc",
    "//net",
    "//url",
  ]
}