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

Side by Side Diff: skia/skia_common.gypi

Issue 61923004: Clean up uses of use_glib that are not related to glib dependencies (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: desktop_linux == 1 or chromeos == 1 Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This gypi file handles the removal of platform-specific files from the 5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build. 6 # Skia build.
7 { 7 {
8 'include_dirs': [ 8 'include_dirs': [
9 '..', 9 '..',
10 'config', 10 'config',
(...skipping 11 matching lines...) Expand all
22 ], 22 ],
23 }], 23 }],
24 [ 'OS != "mac"', { 24 [ 'OS != "mac"', {
25 'sources/': [ 25 'sources/': [
26 ['exclude', '_mac\\.(cc|cpp|mm?)$'], 26 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
27 ], 27 ],
28 }], 28 }],
29 [ 'OS != "win"', { 29 [ 'OS != "win"', {
30 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], 30 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
31 }], 31 }],
32 [ 'use_glib == 0', { 32 [ 'desktop_linux == 0 and chromeos == 0', {
33 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ], 33 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ],
34 }], 34 }],
35 ], 35 ],
36 36
37 'direct_dependent_settings': { 37 'direct_dependent_settings': {
38 'include_dirs': [ 38 'include_dirs': [
39 '..', 39 '..',
40 'config', 40 'config',
41 ], 41 ],
42 }, 42 },
43 43
44 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], 44 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
45 } 45 }
OLDNEW
« base/base.gyp ('K') | « net/net.gyp ('k') | skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698