OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 "affiliation_fetch_throttler_delegate.h", | 28 "affiliation_fetch_throttler_delegate.h", |
29 "affiliation_fetcher.cc", | 29 "affiliation_fetcher.cc", |
30 "affiliation_fetcher.h", | 30 "affiliation_fetcher.h", |
31 "affiliation_fetcher_delegate.h", | 31 "affiliation_fetcher_delegate.h", |
32 "affiliation_service.cc", | 32 "affiliation_service.cc", |
33 "affiliation_service.h", | 33 "affiliation_service.h", |
34 "affiliation_utils.cc", | 34 "affiliation_utils.cc", |
35 "affiliation_utils.h", | 35 "affiliation_utils.h", |
36 "browser_save_password_progress_logger.cc", | 36 "browser_save_password_progress_logger.cc", |
37 "browser_save_password_progress_logger.h", | 37 "browser_save_password_progress_logger.h", |
| 38 "export/csv_writer.cc", |
| 39 "export/csv_writer.h", |
38 "facet_manager.cc", | 40 "facet_manager.cc", |
39 "facet_manager.h", | 41 "facet_manager.h", |
40 "facet_manager_host.h", | 42 "facet_manager_host.h", |
| 43 "import/csv_reader.cc", |
| 44 "import/csv_reader.h", |
41 "log_receiver.h", | 45 "log_receiver.h", |
42 "log_router.cc", | 46 "log_router.cc", |
43 "log_router.h", | 47 "log_router.h", |
44 "login_database.cc", | 48 "login_database.cc", |
45 "login_database.h", | 49 "login_database.h", |
46 "login_database_mac.cc", | 50 "login_database_mac.cc", |
47 "login_database_posix.cc", | 51 "login_database_posix.cc", |
48 "login_database_win.cc", | 52 "login_database_win.cc", |
49 "login_model.h", | 53 "login_model.h", |
50 "password_autofill_manager.cc", | 54 "password_autofill_manager.cc", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 ":proto", | 89 ":proto", |
86 "//base", | 90 "//base", |
87 "//components/autofill/core/common", | 91 "//components/autofill/core/common", |
88 "//components/keyed_service/core", | 92 "//components/keyed_service/core", |
89 "//components/os_crypt", | 93 "//components/os_crypt", |
90 "//components/password_manager/core/common", | 94 "//components/password_manager/core/common", |
91 "//components/strings", | 95 "//components/strings", |
92 "//net", | 96 "//net", |
93 "//sql", | 97 "//sql", |
94 "//third_party/protobuf:protobuf_lite", | 98 "//third_party/protobuf:protobuf_lite", |
| 99 "//third_party/re2", |
95 "//url", | 100 "//url", |
96 ] | 101 ] |
97 | 102 |
98 if (is_mac) { | 103 if (is_mac) { |
99 # TODO(blundell): Provide the iOS login DB implementation and then | 104 # TODO(blundell): Provide the iOS login DB implementation and then |
100 # also exclude the POSIX one from iOS. http://crbug.com/341429 | 105 # also exclude the POSIX one from iOS. http://crbug.com/341429 |
101 sources -= [ "login_database_posix.cc" ] | 106 sources -= [ "login_database_posix.cc" ] |
102 } | 107 } |
103 | 108 |
104 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 109 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 public_deps = [ | 150 public_deps = [ |
146 ":browser", | 151 ":browser", |
147 ] | 152 ] |
148 deps = [ | 153 deps = [ |
149 "//base", | 154 "//base", |
150 "//components/autofill/core/common", | 155 "//components/autofill/core/common", |
151 "//testing/gmock", | 156 "//testing/gmock", |
152 "//testing/gtest", | 157 "//testing/gtest", |
153 ] | 158 ] |
154 } | 159 } |
OLD | NEW |