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 30 matching lines...) Expand all Loading... |
41 "facet_manager.h", | 41 "facet_manager.h", |
42 "facet_manager_host.h", | 42 "facet_manager_host.h", |
43 "import/csv_reader.cc", | 43 "import/csv_reader.cc", |
44 "import/csv_reader.h", | 44 "import/csv_reader.h", |
45 "keychain_migration_status_mac.h", | 45 "keychain_migration_status_mac.h", |
46 "log_receiver.h", | 46 "log_receiver.h", |
47 "log_router.cc", | 47 "log_router.cc", |
48 "log_router.h", | 48 "log_router.h", |
49 "login_database.cc", | 49 "login_database.cc", |
50 "login_database.h", | 50 "login_database.h", |
| 51 "login_database_ios.cc", |
51 "login_database_mac.cc", | 52 "login_database_mac.cc", |
52 "login_database_posix.cc", | 53 "login_database_posix.cc", |
53 "login_database_win.cc", | 54 "login_database_win.cc", |
54 "login_model.cc", | 55 "login_model.cc", |
55 "login_model.h", | 56 "login_model.h", |
56 "password_autofill_manager.cc", | 57 "password_autofill_manager.cc", |
57 "password_autofill_manager.h", | 58 "password_autofill_manager.h", |
58 "password_bubble_experiment.cc", | 59 "password_bubble_experiment.cc", |
59 "password_bubble_experiment.h", | 60 "password_bubble_experiment.h", |
60 "password_form_manager.cc", | 61 "password_form_manager.cc", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 "//components/strings", | 119 "//components/strings", |
119 "//components/sync_driver", | 120 "//components/sync_driver", |
120 "//components/url_formatter", | 121 "//components/url_formatter", |
121 "//net", | 122 "//net", |
122 "//sql", | 123 "//sql", |
123 "//third_party/protobuf:protobuf_lite", | 124 "//third_party/protobuf:protobuf_lite", |
124 "//third_party/re2", | 125 "//third_party/re2", |
125 "//url", | 126 "//url", |
126 ] | 127 ] |
127 | 128 |
128 if (is_mac) { | 129 if (is_mac || is_ios) { |
129 # TODO(blundell): Provide the iOS login DB implementation and then | |
130 # also exclude the POSIX one from iOS. http://crbug.com/341429 | |
131 sources -= [ "login_database_posix.cc" ] | 130 sources -= [ "login_database_posix.cc" ] |
132 } | 131 } |
133 | 132 |
134 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
135 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 134 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
136 } | 135 } |
137 | 136 |
138 proto_library("proto") { | 137 proto_library("proto") { |
139 sources = [ | 138 sources = [ |
140 "affiliation_api.proto", | 139 "affiliation_api.proto", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 "password_ui_utils_unittest.cc", | 205 "password_ui_utils_unittest.cc", |
207 "psl_matching_helper_unittest.cc", | 206 "psl_matching_helper_unittest.cc", |
208 "statistics_table_unittest.cc", | 207 "statistics_table_unittest.cc", |
209 ] | 208 ] |
210 deps = [ | 209 deps = [ |
211 ":test_support", | 210 ":test_support", |
212 "//testing/gmock", | 211 "//testing/gmock", |
213 "//testing/gtest", | 212 "//testing/gtest", |
214 ] | 213 ] |
215 } | 214 } |
OLD | NEW |