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

Side by Side Diff: trunk/src/skia/skia_common.gypi

Issue 19166003: Revert 211639 "Refactor Skia's GYP to separate Chrome additions ..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « trunk/src/skia/skia_chrome.gypi ('k') | trunk/src/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
(Empty)
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
3 # found in the LICENSE file.
4
5 # This gypi file handles the removal of platform-specific files from the
6 # Skia build.
7 {
8 'conditions': [
9 [ 'OS != "android"', {
10 'sources/': [
11 ['exclude', '_android\\.(cc|cpp)$'],
12 ],
13 }],
14 [ 'OS != "ios"', {
15 'sources/': [
16 ['exclude', '_ios\\.(cc|cpp|mm?)$'],
17 ],
18 }],
19 [ 'OS != "mac"', {
20 'sources/': [
21 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
22 ],
23 }],
24 [ 'OS != "win"', {
25 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
26 }],
27 [ 'use_glib == 0', {
28 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ],
29 }],
30 ],
31
32 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
33 }
OLDNEW
« no previous file with comments | « trunk/src/skia/skia_chrome.gypi ('k') | trunk/src/skia/skia_library.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698