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

Side by Side Diff: content/content_browser.gypi

Issue 13431003: make it possible to disable libflac and libspeex in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: whitespace formatting fixup Created 7 years, 8 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
« 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'dependencies': [ 6 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 7 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 10 '../google_apis/google_apis.gyp:google_apis',
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 ], 1170 ],
1171 }, 1171 },
1172 'sources!': [ 1172 'sources!': [
1173 'browser/geolocation/network_location_provider.cc', 1173 'browser/geolocation/network_location_provider.cc',
1174 'browser/geolocation/network_location_provider.h', 1174 'browser/geolocation/network_location_provider.h',
1175 'browser/geolocation/network_location_request.cc', 1175 'browser/geolocation/network_location_request.cc',
1176 'browser/geolocation/network_location_request.h', 1176 'browser/geolocation/network_location_request.h',
1177 'browser/tracing/tracing_ui.cc', 1177 'browser/tracing/tracing_ui.cc',
1178 'browser/tracing/tracing_ui.h', 1178 'browser/tracing/tracing_ui.h',
1179 ], 1179 ],
1180 }, { # OS!="android"
1181 'dependencies': [
1182 '../third_party/flac/flac.gyp:libflac',
1183 '../third_party/speex/speex.gyp:libspeex',
1184 ],
1185 }], 1180 }],
1186 ['OS=="mac"', { 1181 ['OS=="mac"', {
1187 'sources': [ 1182 'sources': [
1188 # Build necessary Mozilla sources 1183 # Build necessary Mozilla sources
1189 '../third_party/mozilla/ComplexTextInputPanel.h', 1184 '../third_party/mozilla/ComplexTextInputPanel.h',
1190 '../third_party/mozilla/ComplexTextInputPanel.mm', 1185 '../third_party/mozilla/ComplexTextInputPanel.mm',
1191 '../third_party/mozilla/NSPasteboard+Utils.h', 1186 '../third_party/mozilla/NSPasteboard+Utils.h',
1192 '../third_party/mozilla/NSPasteboard+Utils.mm', 1187 '../third_party/mozilla/NSPasteboard+Utils.mm',
1193 '../third_party/mozilla/NSString+Utils.h', 1188 '../third_party/mozilla/NSString+Utils.h',
1194 '../third_party/mozilla/NSString+Utils.mm', 1189 '../third_party/mozilla/NSString+Utils.mm',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 }, { 1290 }, {
1296 'sources/': [ 1291 'sources/': [
1297 ['exclude', '^browser/renderer_host/java/'], 1292 ['exclude', '^browser/renderer_host/java/'],
1298 ], 1293 ],
1299 }], 1294 }],
1300 ['input_speech==0', { 1295 ['input_speech==0', {
1301 'sources/': [ 1296 'sources/': [
1302 ['exclude', '^browser/speech/'], 1297 ['exclude', '^browser/speech/'],
1303 ], 1298 ],
1304 }], 1299 }],
1300 ['input_speech==1 and OS!="android"', {
Paweł Hajdan Jr. 2013/04/04 18:28:36 I think for OS==android input_speech is 0 anyway (
Mostyn Bramley-Moore 2013/04/04 19:21:07 Done in patch set 5. I don't have the android bui
1301 'dependencies': [
1302 '../third_party/flac/flac.gyp:libflac',
1303 '../third_party/speex/speex.gyp:libspeex',
1304 ],
1305 }],
1305 ['linux_use_libgps==1', { 1306 ['linux_use_libgps==1', {
1306 'dependencies': [ 1307 'dependencies': [
1307 '../build/linux/system.gyp:libgps', 1308 '../build/linux/system.gyp:libgps',
1308 ], 1309 ],
1309 }], 1310 }],
1310 ], 1311 ],
1311 } 1312 }
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