| 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 4684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4695 | 4695 |
| 4696 # Always include this via the main test support UI target. | 4696 # Always include this via the main test support UI target. |
| 4697 visibility = [ "//chrome/test:test_support_ui" ] | 4697 visibility = [ "//chrome/test:test_support_ui" ] |
| 4698 | 4698 |
| 4699 sources = [ | 4699 sources = [ |
| 4700 "signin/token_revoker_test_utils.cc", | 4700 "signin/token_revoker_test_utils.cc", |
| 4701 "signin/token_revoker_test_utils.h", | 4701 "signin/token_revoker_test_utils.h", |
| 4702 "ui/webui/signin/login_ui_test_utils.cc", | 4702 "ui/webui/signin/login_ui_test_utils.cc", |
| 4703 "ui/webui/signin/login_ui_test_utils.h", | 4703 "ui/webui/signin/login_ui_test_utils.h", |
| 4704 ] | 4704 ] |
| 4705 deps = [] |
| 4705 | 4706 |
| 4706 if (!is_android) { | 4707 if (!is_android) { |
| 4707 sources += [ | 4708 sources += [ |
| 4708 "password_manager/password_manager_test_base.cc", | 4709 "password_manager/password_manager_test_base.cc", |
| 4709 "password_manager/password_manager_test_base.h", | 4710 "password_manager/password_manager_test_base.h", |
| 4710 "ui/webui/web_ui_test_handler.cc", | 4711 "ui/webui/web_ui_test_handler.cc", |
| 4711 "ui/webui/web_ui_test_handler.h", | 4712 "ui/webui/web_ui_test_handler.h", |
| 4712 ] | 4713 ] |
| 4714 deps += [ "//third_party/WebKit/public:blink_headers" ] |
| 4713 } | 4715 } |
| 4714 | 4716 |
| 4715 configs += [ "//build/config:precompiled_headers" ] | 4717 configs += [ "//build/config:precompiled_headers" ] |
| 4716 | 4718 |
| 4717 public_deps = [ | 4719 public_deps = [ |
| 4718 "//net:test_support", | 4720 "//net:test_support", |
| 4719 ] | 4721 ] |
| 4720 | 4722 |
| 4721 deps = [ | 4723 deps += [ |
| 4722 "//components/metrics:test_support", | 4724 "//components/metrics:test_support", |
| 4723 "//components/password_manager/content/common:mojo_interfaces", | 4725 "//components/password_manager/content/common:mojo_interfaces", |
| 4724 "//components/password_manager/core/browser:test_support", | 4726 "//components/password_manager/core/browser:test_support", |
| 4725 "//components/translate/content/common", | 4727 "//components/translate/content/common", |
| 4726 "//skia", | 4728 "//skia", |
| 4727 "//testing/gtest", | 4729 "//testing/gtest", |
| 4728 ] | 4730 ] |
| 4729 } | 4731 } |
| 4730 | 4732 |
| 4731 if (enable_rlz_support) { | 4733 if (enable_rlz_support) { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 4754 "media/pepper_cdm_test_constants.cc", | 4756 "media/pepper_cdm_test_constants.cc", |
| 4755 "media/pepper_cdm_test_constants.h", | 4757 "media/pepper_cdm_test_constants.h", |
| 4756 ] | 4758 ] |
| 4757 } | 4759 } |
| 4758 } | 4760 } |
| 4759 | 4761 |
| 4760 service_manifest("preferences_forwarder_manifest") { | 4762 service_manifest("preferences_forwarder_manifest") { |
| 4761 name = "preferences_forwarder" | 4763 name = "preferences_forwarder" |
| 4762 source = "prefs/forwarder_manifest.json" | 4764 source = "prefs/forwarder_manifest.json" |
| 4763 } | 4765 } |
| OLD | NEW |