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

Side by Side Diff: components/autofill/content/renderer/BUILD.gn

Issue 1014683006: [Password manager] Recognise squashed login+sign-up forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LazyInstance + commented regexp Created 5 years, 9 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("renderer") { 5 static_library("renderer") {
6 sources = [ 6 sources = [
7 "autofill_agent.cc", 7 "autofill_agent.cc",
8 "autofill_agent.h", 8 "autofill_agent.h",
9 "form_autofill_util.cc", 9 "form_autofill_util.cc",
10 "form_autofill_util.h", 10 "form_autofill_util.h",
(...skipping 16 matching lines...) Expand all
27 "//base", 27 "//base",
28 "//components/autofill/content/common", 28 "//components/autofill/content/common",
29 "//components/autofill/core/common", 29 "//components/autofill/core/common",
30 "//components/strings", 30 "//components/strings",
31 "//content/public/common", 31 "//content/public/common",
32 "//content/public/renderer", 32 "//content/public/renderer",
33 "//google_apis", 33 "//google_apis",
34 "//ipc", 34 "//ipc",
35 "//net", 35 "//net",
36 "//skia", 36 "//skia",
37 "//third_party/icu",
37 "//third_party/WebKit/public:blink", 38 "//third_party/WebKit/public:blink",
38 "//ui/base", 39 "//ui/base",
39 ] 40 ]
40 41
41 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 43 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
43 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698