| 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 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
| 10 | 10 |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "speech/endpointer/energy_endpointer_params.h", | 336 "speech/endpointer/energy_endpointer_params.h", |
| 337 "speech/speech_recognition_engine.cc", | 337 "speech/speech_recognition_engine.cc", |
| 338 "speech/speech_recognition_engine.h", | 338 "speech/speech_recognition_engine.h", |
| 339 "speech/speech_recognizer_impl.cc", | 339 "speech/speech_recognizer_impl.cc", |
| 340 "speech/speech_recognizer_impl.h", | 340 "speech/speech_recognizer_impl.h", |
| 341 ] | 341 ] |
| 342 deps -= [ "//device/battery" ] | 342 deps -= [ "//device/battery" ] |
| 343 deps += [ | 343 deps += [ |
| 344 "//content/public/android:jni", | 344 "//content/public/android:jni", |
| 345 "//media", | 345 "//media", |
| 346 "//media/capture/content/android", |
| 346 "//media/capture/video/android", | 347 "//media/capture/video/android", |
| 347 "//media/mojo/interfaces", | 348 "//media/mojo/interfaces", |
| 348 "//mojo/android:libsystem_java", | 349 "//mojo/android:libsystem_java", |
| 349 "//ui/android", | 350 "//ui/android", |
| 350 ] | 351 ] |
| 351 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 352 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
| 352 libs += [ "jnigraphics" ] | 353 libs += [ "jnigraphics" ] |
| 353 } | 354 } |
| 354 | 355 |
| 355 if (is_mac) { | 356 if (is_mac) { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 if (!is_component_build) { | 524 if (!is_component_build) { |
| 524 public_deps = [ | 525 public_deps = [ |
| 525 ":browser", | 526 ":browser", |
| 526 ] | 527 ] |
| 527 } else { | 528 } else { |
| 528 public_deps = [ | 529 public_deps = [ |
| 529 "//third_party/leveldatabase", | 530 "//third_party/leveldatabase", |
| 530 ] | 531 ] |
| 531 } | 532 } |
| 532 } | 533 } |
| OLD | NEW |