Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(254)

Side by Side Diff: components/wallpaper.gypi

Issue 857353004: Enable find-missing-symbols-at-link-time for chromeos builds too. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gnsyntax Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/user_manager/BUILD.gn ('k') | components/wallpaper/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'wallpaper', 7 'target_name': 'wallpaper',
8 'type': '<(component)', 8 'type': '<(component)',
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
11 '../base/base.gyp:base_prefs',
12 '../content/content.gyp:content',
11 '../skia/skia.gyp:skia', 13 '../skia/skia.gyp:skia',
12 '../ui/gfx/gfx.gyp:gfx', 14 '../ui/gfx/gfx.gyp:gfx',
13 '../ui/gfx/gfx.gyp:gfx_geometry', 15 '../ui/gfx/gfx.gyp:gfx_geometry',
16 '../url/url.gyp:url_lib',
14 ], 17 ],
15 'include_dirs': [ 18 'include_dirs': [
16 '..', 19 '..',
17 ], 20 ],
18 'defines':[ 21 'defines':[
19 'WALLPAPER_IMPLEMENTATION', 22 'WALLPAPER_IMPLEMENTATION',
20 ], 23 ],
21 'sources': [ 24 'sources': [
22 'wallpaper/wallpaper_layout.h', 25 'wallpaper/wallpaper_layout.h',
23 'wallpaper/wallpaper_resizer.cc', 26 'wallpaper/wallpaper_resizer.cc',
24 'wallpaper/wallpaper_resizer.h', 27 'wallpaper/wallpaper_resizer.h',
25 'wallpaper/wallpaper_resizer_observer.h', 28 'wallpaper/wallpaper_resizer_observer.h',
26 ], 29 ],
27 'conditions': [ 30 'conditions': [
28 ['chromeos==1', { 31 ['chromeos==1', {
29 'dependencies': [ 32 'dependencies': [
30 '../chromeos/chromeos.gyp:chromeos', 33 '../chromeos/chromeos.gyp:chromeos',
31 '../components/components.gyp:user_manager', 34 '../components/components.gyp:user_manager',
32 ], 35 ],
33 'sources': [ 36 'sources': [
34 'wallpaper/wallpaper_manager_base.cc', 37 'wallpaper/wallpaper_manager_base.cc',
35 'wallpaper/wallpaper_manager_base.h', 38 'wallpaper/wallpaper_manager_base.h',
36 ], 39 ],
37 }], 40 }],
38 ], 41 ],
39 }, 42 },
40 ], 43 ],
41 } 44 }
OLDNEW
« no previous file with comments | « components/user_manager/BUILD.gn ('k') | components/wallpaper/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698