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

Side by Side Diff: speex.gyp

Issue 6903072: Disable VS warnings in speex. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/speex/
Patch Set: Created 9 years, 7 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 | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 { 5 {
6 'variables': { 6 'variables': {
7 'use_system_speex%': 0, 7 'use_system_speex%': 0,
8 }, 8 },
9 'conditions': [ 9 'conditions': [
10 ['use_system_speex==0', { 10 ['use_system_speex==0', {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ], 80 ],
81 'include_dirs': [ 81 'include_dirs': [
82 'include', 82 'include',
83 'libspeex', 83 'libspeex',
84 ], 84 ],
85 'direct_dependent_settings': { 85 'direct_dependent_settings': {
86 'include_dirs': [ 86 'include_dirs': [
87 'include', # Clients expect <speex/speex.h> to be a system header . 87 'include', # Clients expect <speex/speex.h> to be a system header .
88 ], 88 ],
89 }, 89 },
90 'msvs_disabled_warnings': [4244, 4305],
90 }, 91 },
91 ], 92 ],
92 }, { # use_system_speex != 0 93 }, { # use_system_speex != 0
93 'targets': [ 94 'targets': [
94 { 95 {
95 'target_name': 'libspeex', 96 'target_name': 'libspeex',
96 'type': 'settings', 97 'type': 'settings',
97 'direct_dependent_settings': { 98 'direct_dependent_settings': {
98 'cflags': [ 99 'cflags': [
99 '<!@(pkg-config --cflags speex)', 100 '<!@(pkg-config --cflags speex)',
(...skipping 14 matching lines...) Expand all
114 ], 115 ],
115 }], 116 }],
116 ], 117 ],
117 } 118 }
118 119
119 # Local Variables: 120 # Local Variables:
120 # tab-width:2 121 # tab-width:2
121 # indent-tabs-mode:nil 122 # indent-tabs-mode:nil
122 # End: 123 # End:
123 # vim: set expandtab tabstop=2 shiftwidth=2: 124 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698