| OLD | NEW |
| 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 "clear_browsing_data_tab.h", |
| 14 "counters/autofill_counter.cc", | 14 "counters/autofill_counter.cc", |
| 15 "counters/autofill_counter.h", | 15 "counters/autofill_counter.h", |
| 16 "counters/browsing_data_counter.cc", | 16 "counters/browsing_data_counter.cc", |
| 17 "counters/browsing_data_counter.h", | 17 "counters/browsing_data_counter.h", |
| 18 "counters/history_counter.cc", | 18 "counters/history_counter.cc", |
| 19 "counters/history_counter.h", | 19 "counters/history_counter.h", |
| 20 "counters/passwords_counter.cc", | 20 "counters/passwords_counter.cc", |
| 21 "counters/passwords_counter.h", | 21 "counters/passwords_counter.h", |
| 22 "counters/site_settings_counter.cc", |
| 23 "counters/site_settings_counter.h", |
| 22 "history_notice_utils.cc", | 24 "history_notice_utils.cc", |
| 23 "history_notice_utils.h", | 25 "history_notice_utils.h", |
| 24 "pref_names.cc", | 26 "pref_names.cc", |
| 25 "pref_names.h", | 27 "pref_names.h", |
| 26 ] | 28 ] |
| 27 | 29 |
| 28 deps = [ | 30 deps = [ |
| 29 "//base", | 31 "//base", |
| 30 "//components/autofill/core/browser", | 32 "//components/autofill/core/browser", |
| 33 "//components/content_settings/core/browser:browser", |
| 34 "//components/content_settings/core/common:common", |
| 31 "//components/history/core/browser", | 35 "//components/history/core/browser", |
| 32 "//components/password_manager/core/browser", | 36 "//components/password_manager/core/browser", |
| 33 "//components/pref_registry:pref_registry", | 37 "//components/pref_registry:pref_registry", |
| 34 "//components/prefs:prefs", | 38 "//components/prefs:prefs", |
| 35 "//components/strings", | 39 "//components/strings", |
| 36 "//components/sync", | 40 "//components/sync", |
| 37 "//components/version_info", | 41 "//components/version_info", |
| 38 "//components/webdata/common", | 42 "//components/webdata/common", |
| 39 "//ui/base", | 43 "//ui/base", |
| 40 ] | 44 ] |
| (...skipping 28 matching lines...) Expand all Loading... |
| 69 "//components/password_manager/core/browser:test_support", | 73 "//components/password_manager/core/browser:test_support", |
| 70 "//components/signin/core/browser:test_support", | 74 "//components/signin/core/browser:test_support", |
| 71 "//components/sync", | 75 "//components/sync", |
| 72 "//components/sync:test_support_driver", | 76 "//components/sync:test_support_driver", |
| 73 "//components/sync_preferences:test_support", | 77 "//components/sync_preferences:test_support", |
| 74 "//components/version_info:version_info", | 78 "//components/version_info:version_info", |
| 75 "//net", | 79 "//net", |
| 76 "//testing/gtest", | 80 "//testing/gtest", |
| 77 ] | 81 ] |
| 78 } | 82 } |
| OLD | NEW |