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