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

Side by Side Diff: skia/skia_common.gypi

Issue 18177021: Refactor Skia's GYP to separate Chrome additions from the core lib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extra code 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
OLDNEW
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
robertphillips 2013/07/12 14:01:40 2013?
djsollen 2013/07/12 14:43:27 Done.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
robertphillips 2013/07/12 14:01:40 # This file handles the removal of platform-specif
djsollen 2013/07/12 14:43:27 Done.
6 'conditions': [
7 [ 'OS != "android"', {
8 'sources/': [
9 ['exclude', '_android\\.(cc|cpp)$'],
10 ],
11 }],
12 [ 'OS != "ios"', {
13 'sources/': [
14 ['exclude', '_ios\\.(cc|cpp|mm?)$'],
15 ],
16 }],
17 [ 'OS != "mac"', {
18 'sources/': [
19 ['exclude', '_mac\\.(cc|cpp|mm?)$'],
20 ],
21 }],
22 [ 'OS != "win"', {
23 'sources/': [ ['exclude', '_win\\.(cc|cpp)$'] ],
24 }],
25 [ 'use_glib == 0', {
26 'sources/': [ ['exclude', '_linux\\.(cc|cpp)$'] ],
27 }],
28 ],
29
30 'msvs_disabled_warnings': [4244, 4267, 4341, 4345, 4390, 4554, 4748, 4800],
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698