mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2026-06-04 21:36:29 +03:00
Import chromium-64.0.3282.119
This commit is contained in:
23
components/browsing_data/content/BUILD.gn
Normal file
23
components/browsing_data/content/BUILD.gn
Normal file
@@ -0,0 +1,23 @@
|
||||
# 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.
|
||||
|
||||
static_library("content") {
|
||||
sources = [
|
||||
"conditional_cache_counting_helper.cc",
|
||||
"conditional_cache_counting_helper.h",
|
||||
"counters/site_settings_counter.cc",
|
||||
"counters/site_settings_counter.h",
|
||||
]
|
||||
|
||||
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
||||
|
||||
deps = [
|
||||
"//base",
|
||||
"//components/browsing_data/core",
|
||||
"//components/content_settings/core/browser",
|
||||
"//components/content_settings/core/common",
|
||||
"//content/public/browser",
|
||||
"//net",
|
||||
]
|
||||
}
|
||||
83
components/browsing_data/core/BUILD.gn
Normal file
83
components/browsing_data/core/BUILD.gn
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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",
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user