| 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 3533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3544 | 3544 |
| 3545 # libsecret hard depends on GLib. | 3545 # libsecret hard depends on GLib. |
| 3546 if (use_glib) { | 3546 if (use_glib) { |
| 3547 sources += [ | 3547 sources += [ |
| 3548 "password_manager/native_backend_libsecret.cc", | 3548 "password_manager/native_backend_libsecret.cc", |
| 3549 "password_manager/native_backend_libsecret.h", | 3549 "password_manager/native_backend_libsecret.h", |
| 3550 ] | 3550 ] |
| 3551 defines += [ "USE_LIBSECRET" ] | 3551 defines += [ "USE_LIBSECRET" ] |
| 3552 deps += [ "//third_party/libsecret" ] | 3552 deps += [ "//third_party/libsecret" ] |
| 3553 } | 3553 } |
| 3554 |
| 3555 if (use_ozone) { |
| 3556 sources += [ |
| 3557 "fullscreen_ozone.cc", |
| 3558 "media/webrtc/window_icon_util_ozone.cc", |
| 3559 ] |
| 3560 } |
| 3554 } | 3561 } |
| 3555 | 3562 |
| 3556 if (android_java_ui) { | 3563 if (android_java_ui) { |
| 3557 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] | 3564 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] |
| 3558 } | 3565 } |
| 3559 | 3566 |
| 3560 if (enable_plugin_installation) { | 3567 if (enable_plugin_installation) { |
| 3561 sources += [ | 3568 sources += [ |
| 3562 "plugins/plugin_installer.cc", | 3569 "plugins/plugin_installer.cc", |
| 3563 "plugins/plugin_installer.h", | 3570 "plugins/plugin_installer.h", |
| (...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4382 # linking all of the test support. | 4389 # linking all of the test support. |
| 4383 static_library("pepper_cdm_test_constants") { | 4390 static_library("pepper_cdm_test_constants") { |
| 4384 testonly = true | 4391 testonly = true |
| 4385 visibility = [ "//chrome/*" ] | 4392 visibility = [ "//chrome/*" ] |
| 4386 sources = [ | 4393 sources = [ |
| 4387 "media/pepper_cdm_test_constants.cc", | 4394 "media/pepper_cdm_test_constants.cc", |
| 4388 "media/pepper_cdm_test_constants.h", | 4395 "media/pepper_cdm_test_constants.h", |
| 4389 ] | 4396 ] |
| 4390 } | 4397 } |
| 4391 } | 4398 } |
| OLD | NEW |