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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "//device/battery", | 57 "//device/battery", |
58 "//device/bluetooth", | 58 "//device/bluetooth", |
59 "//device/vibration", | 59 "//device/vibration", |
60 "//gin", | 60 "//gin", |
61 "//google_apis", | 61 "//google_apis", |
62 "//gpu", | 62 "//gpu", |
63 "//gpu/command_buffer/client:gles2_implementation", | 63 "//gpu/command_buffer/client:gles2_implementation", |
64 "//gpu/command_buffer/client:gles2_interface", | 64 "//gpu/command_buffer/client:gles2_interface", |
65 "//ipc/mojo", | 65 "//ipc/mojo", |
66 "//media", | 66 "//media", |
| 67 "//media/capture", |
67 "//media/gpu/ipc/client", | 68 "//media/gpu/ipc/client", |
68 "//media/midi", | 69 "//media/midi", |
69 "//media/mojo/interfaces:image_capture", | 70 "//media/mojo/interfaces:image_capture", |
70 "//mojo/common", | 71 "//mojo/common", |
71 "//mojo/common:url_type_converters", | 72 "//mojo/common:url_type_converters", |
72 "//mojo/public/cpp/bindings", | 73 "//mojo/public/cpp/bindings", |
73 "//mojo/public/js", | 74 "//mojo/public/js", |
74 "//net", | 75 "//net", |
75 "//net:extras", | 76 "//net:extras", |
76 "//services/shell", | 77 "//services/shell", |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 "speech/endpointer/energy_endpointer_params.h", | 354 "speech/endpointer/energy_endpointer_params.h", |
354 "speech/speech_recognition_engine.cc", | 355 "speech/speech_recognition_engine.cc", |
355 "speech/speech_recognition_engine.h", | 356 "speech/speech_recognition_engine.h", |
356 "speech/speech_recognizer_impl.cc", | 357 "speech/speech_recognizer_impl.cc", |
357 "speech/speech_recognizer_impl.h", | 358 "speech/speech_recognizer_impl.h", |
358 ] | 359 ] |
359 deps -= [ "//device/battery" ] | 360 deps -= [ "//device/battery" ] |
360 deps += [ | 361 deps += [ |
361 "//content/public/android:jni", | 362 "//content/public/android:jni", |
362 "//media", | 363 "//media", |
| 364 "//media/capture/video/android", |
363 "//media/mojo/interfaces", | 365 "//media/mojo/interfaces", |
364 "//mojo/android:libsystem_java", | 366 "//mojo/android:libsystem_java", |
365 "//ui/android", | 367 "//ui/android", |
366 ] | 368 ] |
367 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] | 369 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] |
368 libs += [ "jnigraphics" ] | 370 libs += [ "jnigraphics" ] |
369 } | 371 } |
370 | 372 |
371 if (is_mac) { | 373 if (is_mac) { |
372 sources -= [ | 374 sources -= [ |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 if (!is_component_build) { | 525 if (!is_component_build) { |
524 public_deps = [ | 526 public_deps = [ |
525 ":browser", | 527 ":browser", |
526 ] | 528 ] |
527 } else { | 529 } else { |
528 public_deps = [ | 530 public_deps = [ |
529 "//third_party/leveldatabase", | 531 "//third_party/leveldatabase", |
530 ] | 532 ] |
531 } | 533 } |
532 } | 534 } |
OLD | NEW |