OLD | NEW |
| (Empty) |
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. | |
4 { | |
5 'targets': [ | |
6 { | |
7 'target_name': 'wallpaper', | |
8 'type': '<(component)', | |
9 'dependencies': [ | |
10 '../base/base.gyp:base', | |
11 '../content/content.gyp:content', | |
12 '../skia/skia.gyp:skia', | |
13 '../ui/gfx/gfx.gyp:gfx', | |
14 '../ui/gfx/gfx.gyp:gfx_geometry', | |
15 '../url/url.gyp:url_lib', | |
16 'prefs/prefs.gyp:prefs', | |
17 ], | |
18 'include_dirs': [ | |
19 '..', | |
20 ], | |
21 'defines':[ | |
22 'WALLPAPER_IMPLEMENTATION', | |
23 ], | |
24 'sources': [ | |
25 'wallpaper/wallpaper_layout.h', | |
26 'wallpaper/wallpaper_files_id.cc', | |
27 'wallpaper/wallpaper_files_id.h', | |
28 'wallpaper/wallpaper_resizer.cc', | |
29 'wallpaper/wallpaper_resizer.h', | |
30 'wallpaper/wallpaper_resizer_observer.h', | |
31 ], | |
32 'conditions': [ | |
33 ['chromeos==1', { | |
34 'dependencies': [ | |
35 '../chromeos/chromeos.gyp:chromeos', | |
36 '../components/components.gyp:signin_core_account_id', | |
37 '../components/components.gyp:user_manager', | |
38 ], | |
39 'sources': [ | |
40 'wallpaper/wallpaper_manager_base.cc', | |
41 'wallpaper/wallpaper_manager_base.h', | |
42 ], | |
43 }], | |
44 ], | |
45 }, | |
46 ], | |
47 } | |
OLD | NEW |