| 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 3457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3468 if (!use_ozone) { | 3468 if (!use_ozone) { |
| 3469 sources += [ | 3469 sources += [ |
| 3470 "password_manager/native_backend_libsecret.cc", | 3470 "password_manager/native_backend_libsecret.cc", |
| 3471 "password_manager/native_backend_libsecret.h", | 3471 "password_manager/native_backend_libsecret.h", |
| 3472 ] | 3472 ] |
| 3473 defines += [ "USE_LIBSECRET" ] | 3473 defines += [ "USE_LIBSECRET" ] |
| 3474 deps += [ "//third_party/libsecret" ] | 3474 deps += [ "//third_party/libsecret" ] |
| 3475 } | 3475 } |
| 3476 } | 3476 } |
| 3477 | 3477 |
| 3478 if (android_java_ui) { |
| 3479 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] |
| 3480 } |
| 3481 |
| 3478 if (enable_plugin_installation) { | 3482 if (enable_plugin_installation) { |
| 3479 sources += [ | 3483 sources += [ |
| 3480 "plugins/plugin_installer.cc", | 3484 "plugins/plugin_installer.cc", |
| 3481 "plugins/plugin_installer.h", | 3485 "plugins/plugin_installer.h", |
| 3482 "plugins/plugin_installer_observer.cc", | 3486 "plugins/plugin_installer_observer.cc", |
| 3483 "plugins/plugin_installer_observer.h", | 3487 "plugins/plugin_installer_observer.h", |
| 3484 "plugins/plugins_resource_service.cc", | 3488 "plugins/plugins_resource_service.cc", |
| 3485 "plugins/plugins_resource_service.h", | 3489 "plugins/plugins_resource_service.h", |
| 3486 ] | 3490 ] |
| 3487 } | 3491 } |
| (...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4266 # linking all of the test support. | 4270 # linking all of the test support. |
| 4267 static_library("pepper_cdm_test_constants") { | 4271 static_library("pepper_cdm_test_constants") { |
| 4268 testonly = true | 4272 testonly = true |
| 4269 visibility = [ "//chrome/*" ] | 4273 visibility = [ "//chrome/*" ] |
| 4270 sources = [ | 4274 sources = [ |
| 4271 "media/pepper_cdm_test_constants.cc", | 4275 "media/pepper_cdm_test_constants.cc", |
| 4272 "media/pepper_cdm_test_constants.h", | 4276 "media/pepper_cdm_test_constants.h", |
| 4273 ] | 4277 ] |
| 4274 } | 4278 } |
| 4275 } | 4279 } |
| OLD | NEW |