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

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

Issue 1453193002: autofill: switch autofill_regexes to RE2 library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: macros.h Created 5 years, 1 month 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 23 matching lines...) Expand all
34 "password_generation_util.h", 34 "password_generation_util.h",
35 "save_password_progress_logger.cc", 35 "save_password_progress_logger.cc",
36 "save_password_progress_logger.h", 36 "save_password_progress_logger.h",
37 "web_element_descriptor.cc", 37 "web_element_descriptor.cc",
38 "web_element_descriptor.h", 38 "web_element_descriptor.h",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//base:i18n", 43 "//base:i18n",
44 "//third_party/re2",
44 "//ui/base", 45 "//ui/base",
45 "//ui/gfx", 46 "//ui/gfx",
46 "//url", 47 "//url",
47 ] 48 ]
48 49
49 if (is_android) { 50 if (is_android) {
50 # deps += [ 'autofill_jni_headers' ] TODO(GYP) 51 # deps += [ 'autofill_jni_headers' ] TODO(GYP)
51 } 52 }
52 53
53 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
(...skipping 13 matching lines...) Expand all
67 deps = [ 68 deps = [
68 ":common", 69 ":common",
69 "//base", 70 "//base",
70 "//base:i18n", 71 "//base:i18n",
71 "//components/autofill/core/browser", 72 "//components/autofill/core/browser",
72 "//testing/gmock", 73 "//testing/gmock",
73 "//testing/gtest", 74 "//testing/gtest",
74 "//url", 75 "//url",
75 ] 76 ]
76 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698