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