Invalidate scans when the host volume is unmounted.
[chromium-blink-merge.git] / components / wallpaper.gypi
blobf9170467a37043fa6367b9802699e716cd85dabe
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   'targets': [
6     {
7       'target_name': 'wallpaper',
8       'type': '<(component)',
9       'dependencies': [
10         '../base/base.gyp:base',
11         '../skia/skia.gyp:skia',
12         '../ui/gfx/gfx.gyp:gfx',
13         '../ui/gfx/gfx.gyp:gfx_geometry',
14       ],
15       'include_dirs': [
16         '..',
17       ],
18       'defines':[
19         'WALLPAPER_IMPLEMENTATION',
20       ],
21       'sources': [
22         'wallpaper/wallpaper_layout.h',
23         'wallpaper/wallpaper_resizer.cc',
24         'wallpaper/wallpaper_resizer.h',
25         'wallpaper/wallpaper_resizer_observer.h',
26       ],
27       'conditions': [
28         ['chromeos==1', {
29           'dependencies': [
30             '../chromeos/chromeos.gyp:chromeos',
31             '../components/components.gyp:user_manager',
32           ],
33           'sources': [
34             'wallpaper/wallpaper_manager_base.cc',
35             'wallpaper/wallpaper_manager_base.h',
36           ],
37         }],
38       ],
39     },
40   ],