| 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 3445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3456 if (!use_ozone) { | 3456 if (!use_ozone) { |
| 3457 sources += [ | 3457 sources += [ |
| 3458 "password_manager/native_backend_libsecret.cc", | 3458 "password_manager/native_backend_libsecret.cc", |
| 3459 "password_manager/native_backend_libsecret.h", | 3459 "password_manager/native_backend_libsecret.h", |
| 3460 ] | 3460 ] |
| 3461 defines += [ "USE_LIBSECRET" ] | 3461 defines += [ "USE_LIBSECRET" ] |
| 3462 deps += [ "//third_party/libsecret" ] | 3462 deps += [ "//third_party/libsecret" ] |
| 3463 } | 3463 } |
| 3464 } | 3464 } |
| 3465 | 3465 |
| 3466 if (android_java_ui) { | |
| 3467 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] | |
| 3468 } | |
| 3469 | |
| 3470 if (enable_plugin_installation) { | 3466 if (enable_plugin_installation) { |
| 3471 sources += [ | 3467 sources += [ |
| 3472 "plugins/plugin_installer.cc", | 3468 "plugins/plugin_installer.cc", |
| 3473 "plugins/plugin_installer.h", | 3469 "plugins/plugin_installer.h", |
| 3474 "plugins/plugin_installer_observer.cc", | 3470 "plugins/plugin_installer_observer.cc", |
| 3475 "plugins/plugin_installer_observer.h", | 3471 "plugins/plugin_installer_observer.h", |
| 3476 "plugins/plugins_resource_service.cc", | 3472 "plugins/plugins_resource_service.cc", |
| 3477 "plugins/plugins_resource_service.h", | 3473 "plugins/plugins_resource_service.h", |
| 3478 ] | 3474 ] |
| 3479 } | 3475 } |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4246 # linking all of the test support. | 4242 # linking all of the test support. |
| 4247 static_library("pepper_cdm_test_constants") { | 4243 static_library("pepper_cdm_test_constants") { |
| 4248 testonly = true | 4244 testonly = true |
| 4249 visibility = [ "//chrome/*" ] | 4245 visibility = [ "//chrome/*" ] |
| 4250 sources = [ | 4246 sources = [ |
| 4251 "media/pepper_cdm_test_constants.cc", | 4247 "media/pepper_cdm_test_constants.cc", |
| 4252 "media/pepper_cdm_test_constants.h", | 4248 "media/pepper_cdm_test_constants.h", |
| 4253 ] | 4249 ] |
| 4254 } | 4250 } |
| 4255 } | 4251 } |
| OLD | NEW |