Enable find-missing-symbols-at-link-time for chromeos builds too.
[chromium-blink-merge.git] / components / wallpaper / BUILD.gn
blobab3a3255bcff3c65eb48083f923266acb20c7030
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     "//url",
22   ]
23   if (is_chromeos) {
24     sources += [
25       "wallpaper_manager_base.cc",
26       "wallpaper_manager_base.h",
27     ]
28     deps += [
29       "//chromeos",
30       "//components/user_manager",
31       "//content/public/browser",
32     ]
33   }