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

Side by Side Diff: skia/skia_common.gypi

Issue 59133008: ozone: Support building without cairo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase & fix whitespace 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
« no previous file with comments | « skia/skia_chrome.gypi ('k') | skia/skia_library.gypi » ('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 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 19 matching lines...) Expand all
30 'sources/': [ 30 'sources/': [
31 ['exclude', '_mac\\.(cc|cpp|mm?)$'], 31 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
32 ], 32 ],
33 }], 33 }],
34 [ 'OS != "win"', { 34 [ 'OS != "win"', {
35 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ], 35 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
36 }], 36 }],
37 [ 'desktop_linux == 0 and chromeos == 0', { 37 [ 'desktop_linux == 0 and chromeos == 0', {
38 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ], 38 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ],
39 }], 39 }],
40 [ 'use_cairo == 0', {
41 'sources/': [ ['exclude', '_cairo\\.(cc|cpp)$'] ],
42 }],
40 ], 43 ],
41 44
42 # We would prefer this to be direct_dependent_settings, 45 # We would prefer this to be direct_dependent_settings,
43 # however we currently have no means to enforce that direct dependents 46 # however we currently have no means to enforce that direct dependents
44 # re-export if they include Skia headers in their public headers. 47 # re-export if they include Skia headers in their public headers.
45 'all_dependent_settings': { 48 'all_dependent_settings': {
46 'include_dirs': [ 49 'include_dirs': [
47 '..', 50 '..',
48 'config', 51 'config',
49 ], 52 ],
50 }, 53 },
51 54
52 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800], 55 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
53 } 56 }
OLDNEW
« no previous file with comments | « skia/skia_chrome.gypi ('k') | skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698