Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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 } |
| OLD | NEW |