OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 | 10 |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
338 "speech/google_streaming_remote_engine.cc", | 338 "speech/google_streaming_remote_engine.cc", |
339 "speech/google_streaming_remote_engine.h", | 339 "speech/google_streaming_remote_engine.h", |
340 "speech/speech_recognition_engine.cc", | 340 "speech/speech_recognition_engine.cc", |
341 "speech/speech_recognition_engine.h", | 341 "speech/speech_recognition_engine.h", |
342 "speech/speech_recognizer_impl.cc", | 342 "speech/speech_recognizer_impl.cc", |
343 "speech/speech_recognizer_impl.h", | 343 "speech/speech_recognizer_impl.h", |
344 ] | 344 ] |
345 deps += [ | 345 deps += [ |
346 "//content/public/android:jni", | 346 "//content/public/android:jni", |
347 "//media", | 347 "//media", |
348 "//media/base/android:android", | |
no sievers
2015/05/08 22:17:39
Why doesn't content_browser depend on this in gyp?
| |
348 "//mojo/android:libsystem_java", | 349 "//mojo/android:libsystem_java", |
349 "//ui/android", | 350 "//ui/android", |
350 ] | 351 ] |
351 libs += [ "jnigraphics" ] | 352 libs += [ "jnigraphics" ] |
352 } | 353 } |
353 | 354 |
354 if (is_mac) { | 355 if (is_mac) { |
355 sources -= [ | 356 sources -= [ |
356 "device_sensors/data_fetcher_shared_memory_default.cc", | 357 "device_sensors/data_fetcher_shared_memory_default.cc", |
357 "geolocation/empty_wifi_data_provider.cc", | 358 "geolocation/empty_wifi_data_provider.cc", |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
458 } | 459 } |
459 | 460 |
460 if (is_linux && use_openssl) { | 461 if (is_linux && use_openssl) { |
461 deps += [ "//third_party/boringssl" ] | 462 deps += [ "//third_party/boringssl" ] |
462 } | 463 } |
463 | 464 |
464 if (enable_media_mojo_renderer) { | 465 if (enable_media_mojo_renderer) { |
465 deps += [ "//media/mojo/services:renderer_service" ] | 466 deps += [ "//media/mojo/services:renderer_service" ] |
466 } | 467 } |
467 } | 468 } |
OLD | NEW |