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

Side by Side Diff: components/autofill/core/common/BUILD.gn

Issue 2318533002: [Password Generation] Use signatures for form matching (Closed)
Patch Set: Rebase Created 4 years, 3 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 static_library("common") { 5 static_library("common") {
6 sources = [ 6 sources = [
7 "autofill_constants.cc", 7 "autofill_constants.cc",
8 "autofill_constants.h", 8 "autofill_constants.h",
9 "autofill_data_validation.cc", 9 "autofill_data_validation.cc",
10 "autofill_data_validation.h", 10 "autofill_data_validation.h",
(...skipping 18 matching lines...) Expand all
29 "password_form.cc", 29 "password_form.cc",
30 "password_form.h", 30 "password_form.h",
31 "password_form_field_prediction_map.h", 31 "password_form_field_prediction_map.h",
32 "password_form_fill_data.cc", 32 "password_form_fill_data.cc",
33 "password_form_fill_data.h", 33 "password_form_fill_data.h",
34 "password_form_generation_data.h", 34 "password_form_generation_data.h",
35 "password_generation_util.cc", 35 "password_generation_util.cc",
36 "password_generation_util.h", 36 "password_generation_util.h",
37 "save_password_progress_logger.cc", 37 "save_password_progress_logger.cc",
38 "save_password_progress_logger.h", 38 "save_password_progress_logger.h",
39 "signatures_util.cc",
40 "signatures_util.h",
39 ] 41 ]
40 42
41 deps = [ 43 deps = [
42 "//base", 44 "//base",
43 "//base:i18n", 45 "//base:i18n",
46 "//third_party/re2",
44 "//url", 47 "//url",
45 ] 48 ]
46 49
47 if (is_android) { 50 if (is_android) {
48 # deps += [ 'autofill_jni_headers' ] TODO(GYP) 51 # deps += [ 'autofill_jni_headers' ] TODO(GYP)
49 } 52 }
50 53
51 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
52 } 55 }
53 56
(...skipping 13 matching lines...) Expand all
67 ":common", 70 ":common",
68 "//base", 71 "//base",
69 "//base:i18n", 72 "//base:i18n",
70 "//base/test:test_support", 73 "//base/test:test_support",
71 "//components/autofill/core/browser", 74 "//components/autofill/core/browser",
72 "//testing/gmock", 75 "//testing/gmock",
73 "//testing/gtest", 76 "//testing/gtest",
74 "//url", 77 "//url",
75 ] 78 ]
76 } 79 }
OLDNEW
« no previous file with comments | « components/autofill/core/browser/form_structure_unittest.cc ('k') | components/autofill/core/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698