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 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" ] | 4716 deps += [ "//third_party/WebKit/public:blink_headers" ] |
|
jochen (gone - plz use gerrit)
2017/05/22 11:45:28
it seems this is no longer needed now?
| |
| 4717 } | 4717 } |
| 4718 | 4718 |
| 4719 configs += [ "//build/config:precompiled_headers" ] | 4719 configs += [ "//build/config:precompiled_headers" ] |
| 4720 | 4720 |
| 4721 public_deps = [ | 4721 public_deps = [ |
| 4722 "//net:test_support", | 4722 "//net:test_support", |
| 4723 ] | 4723 ] |
| 4724 | 4724 |
| 4725 deps += [ | 4725 deps += [ |
| 4726 "//components/metrics:test_support", | 4726 "//components/metrics:test_support", |
| 4727 "//components/password_manager/content/common:mojo_interfaces", | 4727 "//components/password_manager/content/common:mojo_interfaces", |
| 4728 "//components/password_manager/core/browser:test_support", | 4728 "//components/password_manager/core/browser:test_support", |
| 4729 "//components/translate/content/common", | 4729 "//components/translate/content/common", |
| 4730 "//skia", | 4730 "//skia", |
| 4731 "//testing/gtest", | 4731 "//testing/gtest", |
| 4732 "//third_party/WebKit/public:blink_headers", | |
| 4732 ] | 4733 ] |
| 4733 } | 4734 } |
| 4734 | 4735 |
| 4735 if (enable_rlz_support) { | 4736 if (enable_rlz_support) { |
| 4736 static_library("rlz") { | 4737 static_library("rlz") { |
| 4737 sources = [ | 4738 sources = [ |
| 4738 "rlz/chrome_rlz_tracker_delegate.cc", | 4739 "rlz/chrome_rlz_tracker_delegate.cc", |
| 4739 "rlz/chrome_rlz_tracker_delegate.h", | 4740 "rlz/chrome_rlz_tracker_delegate.h", |
| 4740 ] | 4741 ] |
| 4741 public_deps = [ | 4742 public_deps = [ |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 4758 "media/pepper_cdm_test_constants.cc", | 4759 "media/pepper_cdm_test_constants.cc", |
| 4759 "media/pepper_cdm_test_constants.h", | 4760 "media/pepper_cdm_test_constants.h", |
| 4760 ] | 4761 ] |
| 4761 } | 4762 } |
| 4762 } | 4763 } |
| 4763 | 4764 |
| 4764 service_manifest("preferences_forwarder_manifest") { | 4765 service_manifest("preferences_forwarder_manifest") { |
| 4765 name = "preferences_forwarder" | 4766 name = "preferences_forwarder" |
| 4766 source = "prefs/forwarder_manifest.json" | 4767 source = "prefs/forwarder_manifest.json" |
| 4767 } | 4768 } |
| OLD | NEW |