mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
84 lines
2.1 KiB
Plaintext
84 lines
2.1 KiB
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
if (is_android) {
|
||
|
import("//build/config/android/rules.gni")
|
||
|
}
|
||
|
|
||
|
static_library("core") {
|
||
|
sources = [
|
||
|
"browsing_data_utils.cc",
|
||
|
"browsing_data_utils.h",
|
||
|
"clear_browsing_data_tab.h",
|
||
|
"counters/autofill_counter.cc",
|
||
|
"counters/autofill_counter.h",
|
||
|
"counters/bookmark_counter.cc",
|
||
|
"counters/bookmark_counter.h",
|
||
|
"counters/browsing_data_counter.cc",
|
||
|
"counters/browsing_data_counter.h",
|
||
|
"counters/history_counter.cc",
|
||
|
"counters/history_counter.h",
|
||
|
"counters/passwords_counter.cc",
|
||
|
"counters/passwords_counter.h",
|
||
|
"counters/sync_tracker.cc",
|
||
|
"counters/sync_tracker.h",
|
||
|
"history_notice_utils.cc",
|
||
|
"history_notice_utils.h",
|
||
|
"pref_names.cc",
|
||
|
"pref_names.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/autofill/core/browser",
|
||
|
"//components/bookmarks/browser",
|
||
|
"//components/history/core/browser",
|
||
|
"//components/password_manager/core/browser",
|
||
|
"//components/pref_registry",
|
||
|
"//components/prefs",
|
||
|
"//components/strings",
|
||
|
"//components/sync",
|
||
|
"//components/version_info",
|
||
|
"//components/webdata/common",
|
||
|
"//ui/base",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
if (is_android) {
|
||
|
java_cpp_enum("browsing_data_utils_java") {
|
||
|
sources = [
|
||
|
"browsing_data_utils.h",
|
||
|
]
|
||
|
}
|
||
|
java_cpp_enum("clear_browsing_data_tab_java") {
|
||
|
sources = [
|
||
|
"clear_browsing_data_tab.h",
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"browsing_data_utils_unittest.cc",
|
||
|
"counters/browsing_data_counter_unittest.cc",
|
||
|
"history_notice_utils_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":core",
|
||
|
"//base",
|
||
|
"//components/autofill/core/browser:browser",
|
||
|
"//components/history/core/test:test",
|
||
|
"//components/password_manager/core/browser:test_support",
|
||
|
"//components/signin/core/browser:test_support",
|
||
|
"//components/sync",
|
||
|
"//components/sync:test_support_driver",
|
||
|
"//components/sync_preferences:test_support",
|
||
|
"//components/version_info:version_info",
|
||
|
"//net",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|