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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 | 8 |
9 config("storage_config") { | 9 config("storage_config") { |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
299 "speech/google_one_shot_remote_engine.h", | 299 "speech/google_one_shot_remote_engine.h", |
300 "speech/google_streaming_remote_engine.cc", | 300 "speech/google_streaming_remote_engine.cc", |
301 "speech/google_streaming_remote_engine.h", | 301 "speech/google_streaming_remote_engine.h", |
302 "speech/speech_recognition_engine.cc", | 302 "speech/speech_recognition_engine.cc", |
303 "speech/speech_recognition_engine.h", | 303 "speech/speech_recognition_engine.h", |
304 "speech/speech_recognizer_impl.cc", | 304 "speech/speech_recognizer_impl.cc", |
305 "speech/speech_recognizer_impl.h", | 305 "speech/speech_recognizer_impl.h", |
306 ] | 306 ] |
307 deps += [ | 307 deps += [ |
308 #"//content:jni_headers", TODO(GYP) | 308 #"//content:jni_headers", TODO(GYP) |
309 #"//media", TODO(GYP) | 309 "//media", |
310 ] | 310 ] |
311 libs += [ "jnigraphics" ] | 311 libs += [ "jnigraphics" ] |
312 } | 312 } |
313 | 313 |
314 if (is_mac) { | 314 if (is_mac) { |
315 sources -= [ | 315 sources -= [ |
316 "device_sensors/data_fetcher_shared_memory_default.cc", | 316 "device_sensors/data_fetcher_shared_memory_default.cc", |
317 "geolocation/empty_wifi_data_provider.cc", | 317 "geolocation/empty_wifi_data_provider.cc", |
318 "geolocation/empty_wifi_data_provider.h", | 318 "geolocation/empty_wifi_data_provider.h", |
319 ] | 319 ] |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 sources -= [ | 402 sources -= [ |
403 "geolocation/empty_wifi_data_provider.cc", | 403 "geolocation/empty_wifi_data_provider.cc", |
404 ] | 404 ] |
405 deps += [ "//dbus" ] | 405 deps += [ "//dbus" ] |
406 } else { | 406 } else { |
407 # This will already have gotten removed for all non-Linux cases. | 407 # This will already have gotten removed for all non-Linux cases. |
408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
409 } | 409 } |
410 } | 410 } |
411 } | 411 } |
OLD | NEW |