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

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: 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 'enable_libflac%': 1,
7 'enable_libspeex%': 1,
8
6 'dependencies': [ 9 'dependencies': [
7 'browser/speech/proto/speech_proto.gyp:speech_proto', 10 'browser/speech/proto/speech_proto.gyp:speech_proto',
8 '../base/base.gyp:base_static', 11 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 12 '../crypto/crypto.gyp:crypto',
10 '../google_apis/google_apis.gyp:google_apis', 13 '../google_apis/google_apis.gyp:google_apis',
11 '../net/net.gyp:net', 14 '../net/net.gyp:net',
12 '../skia/skia.gyp:skia', 15 '../skia/skia.gyp:skia',
13 '../third_party/re2/re2.gyp:re2', 16 '../third_party/re2/re2.gyp:re2',
14 '../third_party/zlib/zlib.gyp:zlib', 17 '../third_party/zlib/zlib.gyp:zlib',
15 '../ui/snapshot/snapshot.gyp:snapshot', 18 '../ui/snapshot/snapshot.gyp:snapshot',
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1170 ], 1173 ],
1171 }, 1174 },
1172 'sources!': [ 1175 'sources!': [
1173 'browser/geolocation/network_location_provider.cc', 1176 'browser/geolocation/network_location_provider.cc',
1174 'browser/geolocation/network_location_provider.h', 1177 'browser/geolocation/network_location_provider.h',
1175 'browser/geolocation/network_location_request.cc', 1178 'browser/geolocation/network_location_request.cc',
1176 'browser/geolocation/network_location_request.h', 1179 'browser/geolocation/network_location_request.h',
1177 'browser/tracing/tracing_ui.cc', 1180 'browser/tracing/tracing_ui.cc',
1178 'browser/tracing/tracing_ui.h', 1181 'browser/tracing/tracing_ui.h',
1179 ], 1182 ],
1180 }, { # OS!="android" 1183 'enable_libflac%': 0,
Paweł Hajdan Jr. 2013/04/03 23:53:10 This does not look like valid gyp code for me (it'
1184 'enable_libspeex%': 0,
1185 }],
1186 ['enable_libflac==1', {
Paweł Hajdan Jr. 2013/04/03 23:53:10 This won't work correctly either - I don't see any
1181 'dependencies': [ 1187 'dependencies': [
1182 '../third_party/flac/flac.gyp:libflac', 1188 '../third_party/flac/flac.gyp:libflac',
1189 ],
1190 }],
1191 ['enable_libspeex==1', {
1192 'dependencies': [
1183 '../third_party/speex/speex.gyp:libspeex', 1193 '../third_party/speex/speex.gyp:libspeex',
1184 ], 1194 ],
1185 }], 1195 }],
1186 ['OS=="mac"', { 1196 ['OS=="mac"', {
1187 'sources': [ 1197 'sources': [
1188 # Build necessary Mozilla sources 1198 # Build necessary Mozilla sources
1189 '../third_party/mozilla/ComplexTextInputPanel.h', 1199 '../third_party/mozilla/ComplexTextInputPanel.h',
1190 '../third_party/mozilla/ComplexTextInputPanel.mm', 1200 '../third_party/mozilla/ComplexTextInputPanel.mm',
1191 '../third_party/mozilla/NSPasteboard+Utils.h', 1201 '../third_party/mozilla/NSPasteboard+Utils.h',
1192 '../third_party/mozilla/NSPasteboard+Utils.mm', 1202 '../third_party/mozilla/NSPasteboard+Utils.mm',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1302 ['exclude', '^browser/speech/'], 1312 ['exclude', '^browser/speech/'],
1303 ], 1313 ],
1304 }], 1314 }],
1305 ['linux_use_libgps==1', { 1315 ['linux_use_libgps==1', {
1306 'dependencies': [ 1316 'dependencies': [
1307 '../build/linux/system.gyp:libgps', 1317 '../build/linux/system.gyp:libgps',
1308 ], 1318 ],
1309 }], 1319 }],
1310 ], 1320 ],
1311 } 1321 }
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