Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(120)

Side by Side Diff: components/browsing_data/core/BUILD.gn

Issue 2153863002: Move counters for passwords, history and autofill to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@separate_build_targets_in_components_bd
Patch Set: Addressed comments Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/browsing_data.gypi ('k') | components/browsing_data/core/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 static_library("core") { 9 static_library("core") {
10 sources = [ 10 sources = [
11 "browsing_data_utils.cc", 11 "browsing_data_utils.cc",
12 "browsing_data_utils.h", 12 "browsing_data_utils.h",
13 "counters/autofill_counter.cc",
14 "counters/autofill_counter.h",
13 "counters/browsing_data_counter.cc", 15 "counters/browsing_data_counter.cc",
14 "counters/browsing_data_counter.h", 16 "counters/browsing_data_counter.h",
17 "counters/history_counter.cc",
18 "counters/history_counter.h",
19 "counters/passwords_counter.cc",
20 "counters/passwords_counter.h",
15 "pref_names.cc", 21 "pref_names.cc",
16 "pref_names.h", 22 "pref_names.h",
17 ] 23 ]
18 24
19 deps = [ 25 deps = [
20 "//base", 26 "//base",
27 "//components/autofill/core/browser",
28 "//components/history/core/browser",
29 "//components/password_manager/core/browser",
21 "//components/prefs:prefs", 30 "//components/prefs:prefs",
31 "//components/sync_driver",
32 "//components/webdata/common",
22 ] 33 ]
23 } 34 }
24 35
25 if (is_android) { 36 if (is_android) {
26 # GYP: //components/browsing_data.gypi:browsing_data_utils_java 37 # GYP: //components/browsing_data.gypi:browsing_data_utils_java
27 java_cpp_enum("browsing_data_utils_java") { 38 java_cpp_enum("browsing_data_utils_java") {
28 sources = [ 39 sources = [
29 "browsing_data_utils.h", 40 "browsing_data_utils.h",
30 ] 41 ]
31 } 42 }
32 } 43 }
OLDNEW
« no previous file with comments | « components/browsing_data.gypi ('k') | components/browsing_data/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698