kMaxBlockSize -> kMaxHeaderBlockSize to avoid shadowing warning on VS2015
[chromium-blink-merge.git] / components / wallpaper / BUILD.gn
blobe52d39fe4654c331334e507ee42f5a921ffd4349
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     deps += [
30       "//chromeos",
31       "//components/user_manager",
32       "//content/public/browser",
33     ]
34   }