| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2060 "safe_browsing/services_delegate_stub.h", | 2060 "safe_browsing/services_delegate_stub.h", |
| 2061 ] | 2061 ] |
| 2062 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] | 2062 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] |
| 2063 } | 2063 } |
| 2064 } | 2064 } |
| 2065 | 2065 |
| 2066 if (enable_hotwording) { | 2066 if (enable_hotwording) { |
| 2067 defines += [ "ENABLE_HOTWORDING" ] | 2067 defines += [ "ENABLE_HOTWORDING" ] |
| 2068 } | 2068 } |
| 2069 | 2069 |
| 2070 if (is_linux) { | 2070 if (is_linux && use_dbus) { |
| 2071 deps += [ "//device/media_transfer_protocol" ] | 2071 deps += [ "//device/media_transfer_protocol" ] |
| 2072 } | 2072 } |
| 2073 | 2073 |
| 2074 if (use_udev) { | 2074 if (use_udev) { |
| 2075 deps += [ "//device/udev_linux" ] | 2075 deps += [ "//device/udev_linux" ] |
| 2076 } | 2076 } |
| 2077 | 2077 |
| 2078 if (is_linux && !is_chromeos) { | 2078 if (is_linux && !is_chromeos) { |
| 2079 deps += [ "//third_party/speech-dispatcher" ] | 2079 deps += [ "//third_party/speech-dispatcher" ] |
| 2080 } | 2080 } |
| (...skipping 2145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4226 # linking all of the test support. | 4226 # linking all of the test support. |
| 4227 static_library("pepper_cdm_test_constants") { | 4227 static_library("pepper_cdm_test_constants") { |
| 4228 testonly = true | 4228 testonly = true |
| 4229 visibility = [ "//chrome/*" ] | 4229 visibility = [ "//chrome/*" ] |
| 4230 sources = [ | 4230 sources = [ |
| 4231 "media/pepper_cdm_test_constants.cc", | 4231 "media/pepper_cdm_test_constants.cc", |
| 4232 "media/pepper_cdm_test_constants.h", | 4232 "media/pepper_cdm_test_constants.h", |
| 4233 ] | 4233 ] |
| 4234 } | 4234 } |
| 4235 } | 4235 } |
| OLD | NEW |