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

Side by Side Diff: gyp/cityhash.gyp

Issue 12963002: Refactor skia_warnings_as_errors (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Use variable instead of disable_warnings_as_errors.gypi Created 7 years, 9 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 | « gyp/angle.gyp ('k') | gyp/common_conditions.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 {
borenet 2013/03/21 22:32:19 Moved from utils.gyp.
2 'variables': {
3 'skia_warnings_as_errors': 0,
4 },
5 'targets': [
6 {
7 'target_name': 'cityhash',
8 'type': 'static_library',
9 'standalone_static_library': 1,
10 'include_dirs': [
11 '../include/config',
12 '../include/core',
13 '../src/utils/cityhash',
14 '../third_party/externals/cityhash/src',
15 ],
16 'sources': [
17 '../third_party/externals/cityhash/src/city.cc',
18 ],
19 'direct_dependent_settings': {
20 'include_dirs': [
21 '../third_party/externals/cityhash/src',
22 ],
23 },
24 'conditions': [
25 [ 'skia_os == "android"', {
26 'cflags!': [
27 '-Wall',
28 ],
29 }],
30 ],
31 },
32 ],
33 }
OLDNEW
« no previous file with comments | « gyp/angle.gyp ('k') | gyp/common_conditions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698