Chromium Code Reviews| 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 3524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3535 | 3535 |
| 3536 # libsecret hard depends on GLib. | 3536 # libsecret hard depends on GLib. |
| 3537 if (use_glib) { | 3537 if (use_glib) { |
| 3538 sources += [ | 3538 sources += [ |
| 3539 "password_manager/native_backend_libsecret.cc", | 3539 "password_manager/native_backend_libsecret.cc", |
| 3540 "password_manager/native_backend_libsecret.h", | 3540 "password_manager/native_backend_libsecret.h", |
| 3541 ] | 3541 ] |
| 3542 defines += [ "USE_LIBSECRET" ] | 3542 defines += [ "USE_LIBSECRET" ] |
| 3543 deps += [ "//third_party/libsecret" ] | 3543 deps += [ "//third_party/libsecret" ] |
| 3544 } | 3544 } |
| 3545 | |
| 3546 if (use_ozone) { | |
| 3547 sources += [ | |
| 3548 "fullscreen_auramus.cc", | |
|
sky
2016/11/04 21:40:37
Wouldn't _ozone be a better name to use here? aura
tonikitoo
2016/11/04 22:02:56
Done.
| |
| 3549 "media/webrtc/window_icon_util_auramus.cc", | |
| 3550 ] | |
| 3551 } | |
| 3545 } | 3552 } |
| 3546 | 3553 |
| 3547 if (android_java_ui) { | 3554 if (android_java_ui) { |
| 3548 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] | 3555 deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] |
| 3549 } | 3556 } |
| 3550 | 3557 |
| 3551 if (enable_plugin_installation) { | 3558 if (enable_plugin_installation) { |
| 3552 sources += [ | 3559 sources += [ |
| 3553 "plugins/plugin_installer.cc", | 3560 "plugins/plugin_installer.cc", |
| 3554 "plugins/plugin_installer.h", | 3561 "plugins/plugin_installer.h", |
| (...skipping 817 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 4372 # linking all of the test support. | 4379 # linking all of the test support. |
| 4373 static_library("pepper_cdm_test_constants") { | 4380 static_library("pepper_cdm_test_constants") { |
| 4374 testonly = true | 4381 testonly = true |
| 4375 visibility = [ "//chrome/*" ] | 4382 visibility = [ "//chrome/*" ] |
| 4376 sources = [ | 4383 sources = [ |
| 4377 "media/pepper_cdm_test_constants.cc", | 4384 "media/pepper_cdm_test_constants.cc", |
| 4378 "media/pepper_cdm_test_constants.h", | 4385 "media/pepper_cdm_test_constants.h", |
| 4379 ] | 4386 ] |
| 4380 } | 4387 } |
| 4381 } | 4388 } |
| OLD | NEW |