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

Side by Side Diff: components/password_manager/core/browser/BUILD.gn

Issue 1193143003: Enable import/export of passwords into/from Password Manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix problem revealed through git-cl-try Created 5 years, 6 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 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 18 matching lines...) Expand all
29 "browser_save_password_progress_logger.cc", 29 "browser_save_password_progress_logger.cc",
30 "browser_save_password_progress_logger.h", 30 "browser_save_password_progress_logger.h",
31 "credential_manager_password_form_manager.cc", 31 "credential_manager_password_form_manager.cc",
32 "credential_manager_password_form_manager.h", 32 "credential_manager_password_form_manager.h",
33 "credential_manager_pending_request_task.cc", 33 "credential_manager_pending_request_task.cc",
34 "credential_manager_pending_request_task.h", 34 "credential_manager_pending_request_task.h",
35 "credential_manager_pending_signed_out_task.cc", 35 "credential_manager_pending_signed_out_task.cc",
36 "credential_manager_pending_signed_out_task.h", 36 "credential_manager_pending_signed_out_task.h",
37 "export/csv_writer.cc", 37 "export/csv_writer.cc",
38 "export/csv_writer.h", 38 "export/csv_writer.h",
39 "export/password_exporter.cc",
40 "export/password_exporter.h",
39 "facet_manager.cc", 41 "facet_manager.cc",
40 "facet_manager.h", 42 "facet_manager.h",
41 "facet_manager_host.h", 43 "facet_manager_host.h",
42 "import/csv_reader.cc", 44 "import/csv_reader.cc",
43 "import/csv_reader.h", 45 "import/csv_reader.h",
46 "import/password_importer.cc",
47 "import/password_importer.h",
44 "log_receiver.h", 48 "log_receiver.h",
45 "log_router.cc", 49 "log_router.cc",
46 "log_router.h", 50 "log_router.h",
47 "login_database.cc", 51 "login_database.cc",
48 "login_database.h", 52 "login_database.h",
49 "login_database_mac.cc", 53 "login_database_mac.cc",
50 "login_database_posix.cc", 54 "login_database_posix.cc",
51 "login_database_win.cc", 55 "login_database_win.cc",
52 "login_model.h", 56 "login_model.h",
53 "password_autofill_manager.cc", 57 "password_autofill_manager.cc",
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 public_deps = [ 152 public_deps = [
149 ":browser", 153 ":browser",
150 ] 154 ]
151 deps = [ 155 deps = [
152 "//base", 156 "//base",
153 "//components/autofill/core/common", 157 "//components/autofill/core/common",
154 "//testing/gmock", 158 "//testing/gmock",
155 "//testing/gtest", 159 "//testing/gtest",
156 ] 160 ]
157 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698