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 4695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4706 ] | 4706 ] |
4707 deps = [] | 4707 deps = [] |
4708 | 4708 |
4709 if (!is_android) { | 4709 if (!is_android) { |
4710 sources += [ | 4710 sources += [ |
4711 "password_manager/password_manager_test_base.cc", | 4711 "password_manager/password_manager_test_base.cc", |
4712 "password_manager/password_manager_test_base.h", | 4712 "password_manager/password_manager_test_base.h", |
4713 "ui/webui/web_ui_test_handler.cc", | 4713 "ui/webui/web_ui_test_handler.cc", |
4714 "ui/webui/web_ui_test_handler.h", | 4714 "ui/webui/web_ui_test_handler.h", |
4715 ] | 4715 ] |
4716 deps += [ "//third_party/WebKit/public:blink_headers" ] | |
4717 } | 4716 } |
4718 | 4717 |
4719 configs += [ "//build/config:precompiled_headers" ] | 4718 configs += [ "//build/config:precompiled_headers" ] |
4720 | 4719 |
4721 public_deps = [ | 4720 public_deps = [ |
4722 "//net:test_support", | 4721 "//net:test_support", |
4723 ] | 4722 ] |
4724 | 4723 |
4725 deps += [ | 4724 deps += [ |
4726 "//components/metrics:test_support", | 4725 "//components/metrics:test_support", |
4727 "//components/password_manager/content/common:mojo_interfaces", | 4726 "//components/password_manager/content/common:mojo_interfaces", |
4728 "//components/password_manager/core/browser:test_support", | 4727 "//components/password_manager/core/browser:test_support", |
4729 "//components/translate/content/common", | 4728 "//components/translate/content/common", |
4730 "//skia", | 4729 "//skia", |
4731 "//testing/gtest", | 4730 "//testing/gtest", |
| 4731 "//third_party/WebKit/public:blink_headers", |
4732 ] | 4732 ] |
4733 } | 4733 } |
4734 | 4734 |
4735 if (enable_rlz_support) { | 4735 if (enable_rlz_support) { |
4736 static_library("rlz") { | 4736 static_library("rlz") { |
4737 sources = [ | 4737 sources = [ |
4738 "rlz/chrome_rlz_tracker_delegate.cc", | 4738 "rlz/chrome_rlz_tracker_delegate.cc", |
4739 "rlz/chrome_rlz_tracker_delegate.h", | 4739 "rlz/chrome_rlz_tracker_delegate.h", |
4740 ] | 4740 ] |
4741 public_deps = [ | 4741 public_deps = [ |
(...skipping 16 matching lines...) Expand all Loading... |
4758 "media/pepper_cdm_test_constants.cc", | 4758 "media/pepper_cdm_test_constants.cc", |
4759 "media/pepper_cdm_test_constants.h", | 4759 "media/pepper_cdm_test_constants.h", |
4760 ] | 4760 ] |
4761 } | 4761 } |
4762 } | 4762 } |
4763 | 4763 |
4764 service_manifest("preferences_forwarder_manifest") { | 4764 service_manifest("preferences_forwarder_manifest") { |
4765 name = "preferences_forwarder" | 4765 name = "preferences_forwarder" |
4766 source = "prefs/forwarder_manifest.json" | 4766 source = "prefs/forwarder_manifest.json" |
4767 } | 4767 } |
OLD | NEW |