| Index: components/BUILD.gn
|
| diff --git a/components/BUILD.gn b/components/BUILD.gn
|
| index 2518239f736c851209a699eff8a425232f833f38..9ad33a252c1e7cbb73596ae61bf4e3dfca38d4b1 100644
|
| --- a/components/BUILD.gn
|
| +++ b/components/BUILD.gn
|
| @@ -2,6 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/chrome_build.gni")
|
| import("//build/config/features.gni")
|
| import("//build/config/ui.gni")
|
| import("//printing/features/features.gni")
|
| @@ -120,7 +121,7 @@ test("components_unittests") {
|
| "//components/search:unit_tests",
|
| "//components/search_engines:unit_tests",
|
| "//components/search_provider_logos:unit_tests",
|
| - "//components/security_state:unit_tests",
|
| + "//components/security_state/core:unit_tests",
|
| "//components/sessions:unit_tests",
|
| "//components/signin/core/browser:unit_tests",
|
| "//components/ssl_config:unit_tests",
|
| @@ -194,6 +195,7 @@ test("components_unittests") {
|
| "//components/precache/content:unit_tests",
|
| "//components/safe_browsing_db:unit_tests",
|
| "//components/safe_json:unit_tests",
|
| + "//components/security_state/content:unit_tests",
|
| "//components/spellcheck/browser:unit_tests",
|
| "//components/spellcheck/renderer:unit_tests",
|
| "//components/subresource_filter/content/browser:unit_tests",
|
| @@ -319,6 +321,12 @@ repack("components_tests_pak") {
|
| "//components/resources",
|
| "//components/strings",
|
| ]
|
| +
|
| + if (is_chrome_branded) {
|
| + sources += [ "${root_gen_dir}/components/strings/components_google_chrome_strings_en-US.pak" ]
|
| + } else {
|
| + sources += [ "${root_gen_dir}/components/strings/components_chromium_strings_en-US.pak" ]
|
| + }
|
| }
|
|
|
| if (is_android) {
|
| @@ -383,6 +391,7 @@ if (!is_ios) {
|
| "dom_distiller/content/browser/distiller_page_web_contents_browsertest.cc",
|
| "dom_distiller/content/browser/test/dom_distiller_js_browsertest.cc",
|
| "password_manager/content/renderer/credential_manager_client_browsertest.cc",
|
| + "security_state/content/content_utils_browsertest.cc",
|
| "tracing/child/child_trace_message_filter_browsertest.cc",
|
| ]
|
|
|
| @@ -406,8 +415,11 @@ if (!is_ios) {
|
| "//components/dom_distiller/core:test_support",
|
| "//components/password_manager/content/browser",
|
| "//components/password_manager/content/renderer",
|
| + "//components/security_state/content",
|
| + "//components/security_state/core",
|
| "//components/strings",
|
| "//components/tracing",
|
| + "//content/public/browser",
|
| "//content/shell:content_shell_lib",
|
| "//content/test:browsertest_support",
|
| "//content/test:test_support",
|
| @@ -420,6 +432,7 @@ if (!is_ios) {
|
| "//testing/gmock",
|
| "//testing/gtest",
|
| "//ui/base",
|
| + "//url",
|
| ]
|
|
|
| data_deps = [
|
|
|