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

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

Issue 2671743002: Separate state of basic and advanced tab in CBD dialog (Closed)
Patch Set: rebase and fix compilation Created 3 years, 9 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
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 "clear_browsing_data_tab.h",
13 "counters/autofill_counter.cc", 14 "counters/autofill_counter.cc",
14 "counters/autofill_counter.h", 15 "counters/autofill_counter.h",
15 "counters/browsing_data_counter.cc", 16 "counters/browsing_data_counter.cc",
16 "counters/browsing_data_counter.h", 17 "counters/browsing_data_counter.h",
17 "counters/history_counter.cc", 18 "counters/history_counter.cc",
18 "counters/history_counter.h", 19 "counters/history_counter.h",
19 "counters/passwords_counter.cc", 20 "counters/passwords_counter.cc",
20 "counters/passwords_counter.h", 21 "counters/passwords_counter.h",
21 "history_notice_utils.cc", 22 "history_notice_utils.cc",
22 "history_notice_utils.h", 23 "history_notice_utils.h",
(...skipping 15 matching lines...) Expand all
38 "//ui/base", 39 "//ui/base",
39 ] 40 ]
40 } 41 }
41 42
42 if (is_android) { 43 if (is_android) {
43 java_cpp_enum("browsing_data_utils_java") { 44 java_cpp_enum("browsing_data_utils_java") {
44 sources = [ 45 sources = [
45 "browsing_data_utils.h", 46 "browsing_data_utils.h",
46 ] 47 ]
47 } 48 }
49 java_cpp_enum("clear_browsing_data_tab_java") {
50 sources = [
51 "clear_browsing_data_tab.h",
52 ]
53 }
48 } 54 }
49 55
50 source_set("unit_tests") { 56 source_set("unit_tests") {
51 testonly = true 57 testonly = true
52 sources = [ 58 sources = [
53 "browsing_data_utils_unittest.cc", 59 "browsing_data_utils_unittest.cc",
54 "counters/browsing_data_counter_unittest.cc", 60 "counters/browsing_data_counter_unittest.cc",
55 "history_notice_utils_unittest.cc", 61 "history_notice_utils_unittest.cc",
56 ] 62 ]
57 63
58 deps = [ 64 deps = [
59 ":core", 65 ":core",
60 "//base", 66 "//base",
61 "//components/autofill/core/browser:browser", 67 "//components/autofill/core/browser:browser",
62 "//components/history/core/test:test", 68 "//components/history/core/test:test",
63 "//components/signin/core/browser:test_support", 69 "//components/signin/core/browser:test_support",
64 "//components/sync", 70 "//components/sync",
65 "//components/sync:test_support_driver", 71 "//components/sync:test_support_driver",
72 "//components/sync_preferences:test_support",
66 "//components/version_info:version_info", 73 "//components/version_info:version_info",
67 "//net", 74 "//net",
68 "//testing/gtest", 75 "//testing/gtest",
69 ] 76 ]
70 } 77 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc ('k') | components/browsing_data/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698