| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "speech/audio_encoder.cc", | 349 "speech/audio_encoder.cc", |
| 350 "speech/audio_encoder.h", | 350 "speech/audio_encoder.h", |
| 351 "speech/chunked_byte_buffer.cc", | 351 "speech/chunked_byte_buffer.cc", |
| 352 "speech/chunked_byte_buffer.h", | 352 "speech/chunked_byte_buffer.h", |
| 353 "speech/endpointer/endpointer.cc", | 353 "speech/endpointer/endpointer.cc", |
| 354 "speech/endpointer/endpointer.h", | 354 "speech/endpointer/endpointer.h", |
| 355 "speech/endpointer/energy_endpointer.cc", | 355 "speech/endpointer/energy_endpointer.cc", |
| 356 "speech/endpointer/energy_endpointer.h", | 356 "speech/endpointer/energy_endpointer.h", |
| 357 "speech/endpointer/energy_endpointer_params.cc", | 357 "speech/endpointer/energy_endpointer_params.cc", |
| 358 "speech/endpointer/energy_endpointer_params.h", | 358 "speech/endpointer/energy_endpointer_params.h", |
| 359 "speech/google_one_shot_remote_engine.cc", | |
| 360 "speech/google_one_shot_remote_engine.h", | |
| 361 "speech/google_streaming_remote_engine.cc", | 359 "speech/google_streaming_remote_engine.cc", |
| 362 "speech/google_streaming_remote_engine.h", | 360 "speech/google_streaming_remote_engine.h", |
| 363 "speech/speech_recognition_engine.cc", | 361 "speech/speech_recognition_engine.cc", |
| 364 "speech/speech_recognition_engine.h", | 362 "speech/speech_recognition_engine.h", |
| 365 "speech/speech_recognizer_impl.cc", | 363 "speech/speech_recognizer_impl.cc", |
| 366 "speech/speech_recognizer_impl.h", | 364 "speech/speech_recognizer_impl.h", |
| 367 ] | 365 ] |
| 368 deps -= [ "//device/battery" ] | 366 deps -= [ "//device/battery" ] |
| 369 deps += [ | 367 deps += [ |
| 370 "//content/public/android:jni", | 368 "//content/public/android:jni", |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 | 521 |
| 524 # See comment at the top of //content/BUILD.gn for how this works. | 522 # See comment at the top of //content/BUILD.gn for how this works. |
| 525 group("for_content_tests") { | 523 group("for_content_tests") { |
| 526 visibility = [ "//content/test/*" ] | 524 visibility = [ "//content/test/*" ] |
| 527 if (!is_component_build) { | 525 if (!is_component_build) { |
| 528 public_deps = [ | 526 public_deps = [ |
| 529 ":browser", | 527 ":browser", |
| 530 ] | 528 ] |
| 531 } | 529 } |
| 532 } | 530 } |
| OLD | NEW |