| 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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 "speech/google_streaming_remote_engine.h", | 322 "speech/google_streaming_remote_engine.h", |
| 323 "speech/speech_recognition_engine.cc", | 323 "speech/speech_recognition_engine.cc", |
| 324 "speech/speech_recognition_engine.h", | 324 "speech/speech_recognition_engine.h", |
| 325 "speech/speech_recognizer_impl.cc", | 325 "speech/speech_recognizer_impl.cc", |
| 326 "speech/speech_recognizer_impl.h", | 326 "speech/speech_recognizer_impl.h", |
| 327 ] | 327 ] |
| 328 deps += [ | 328 deps += [ |
| 329 "//content/public/android:jni", | 329 "//content/public/android:jni", |
| 330 "//media", | 330 "//media", |
| 331 "//mojo/android:libsystem_java", | 331 "//mojo/android:libsystem_java", |
| 332 "//ui/android", |
| 332 ] | 333 ] |
| 333 libs += [ "jnigraphics" ] | 334 libs += [ "jnigraphics" ] |
| 334 } | 335 } |
| 335 | 336 |
| 336 if (is_mac) { | 337 if (is_mac) { |
| 337 sources -= [ | 338 sources -= [ |
| 338 "device_sensors/data_fetcher_shared_memory_default.cc", | 339 "device_sensors/data_fetcher_shared_memory_default.cc", |
| 339 "geolocation/empty_wifi_data_provider.cc", | 340 "geolocation/empty_wifi_data_provider.cc", |
| 340 "geolocation/empty_wifi_data_provider.h", | 341 "geolocation/empty_wifi_data_provider.h", |
| 341 ] | 342 ] |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 | 427 |
| 427 if (enable_browser_cdms) { | 428 if (enable_browser_cdms) { |
| 428 sources += [ | 429 sources += [ |
| 429 "media/cdm/browser_cdm_manager.cc", | 430 "media/cdm/browser_cdm_manager.cc", |
| 430 "media/cdm/browser_cdm_manager.h", | 431 "media/cdm/browser_cdm_manager.h", |
| 431 "media/media_web_contents_observer.cc", | 432 "media/media_web_contents_observer.cc", |
| 432 "media/media_web_contents_observer.h", | 433 "media/media_web_contents_observer.h", |
| 433 ] | 434 ] |
| 434 } | 435 } |
| 435 } | 436 } |
| OLD | NEW |