ExtensionInstallDialogView: fix scrolling behavior on Views (Win,Linux)
[chromium-blink-merge.git] / components / wallpaper / BUILD.gn
blob4c28343299e183047e255bccb3e7f53b1501453b
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
3 # found in the LICENSE file.
5 component("wallpaper") {
6   sources = [
7     "wallpaper_layout.h",
8     "wallpaper_resizer.cc",
9     "wallpaper_resizer.h",
10     "wallpaper_resizer_observer.h",
11   ]
13   defines = [ "WALLPAPER_IMPLEMENTATION" ]
15   deps = [
16     "//base",
17     "//base:prefs",
18     "//content",
19     "//skia",
20     "//ui/gfx",
21     "//ui/gfx/geometry",
22     "//url",
23   ]
24   if (is_chromeos) {
25     sources += [
26       "wallpaper_manager_base.cc",
27       "wallpaper_manager_base.h",
28     ]
29     public_deps = [
30       "//third_party/icu",
31     ]
32     deps += [
33       "//chromeos",
34       "//components/user_manager",
35       "//content/public/browser",
36     ]
37   }