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

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

Issue 707173004: Refactor Autofill for out of process iframes (OOPIF). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self review Created 6 years 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 # GYP version: components/autofill.gypi:autofill_content_browser 7 # GYP version: components/autofill.gypi:autofill_content_browser
8 static_library("browser") { 8 static_library("browser") {
9 sources = [ 9 sources = [
10 "content_autofill_driver.cc", 10 "content_autofill_driver.cc",
11 "content_autofill_driver.h", 11 "content_autofill_driver.h",
12 "content_autofill_driver_factory.cc",
13 "content_autofill_driver_factory.h",
12 "request_autocomplete_manager.cc", 14 "request_autocomplete_manager.cc",
13 "request_autocomplete_manager.h", 15 "request_autocomplete_manager.h",
14 "risk/fingerprint.cc", 16 "risk/fingerprint.cc",
15 "risk/fingerprint.h", 17 "risk/fingerprint.h",
16 "wallet/form_field_error.cc", 18 "wallet/form_field_error.cc",
17 "wallet/form_field_error.h", 19 "wallet/form_field_error.h",
18 "wallet/full_wallet.cc", 20 "wallet/full_wallet.cc",
19 "wallet/full_wallet.h", 21 "wallet/full_wallet.h",
20 "wallet/gaia_account.cc", 22 "wallet/gaia_account.cc",
21 "wallet/gaia_account.h", 23 "wallet/gaia_account.h",
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 "wallet/wallet_signin_helper_unittest.cc", 105 "wallet/wallet_signin_helper_unittest.cc",
104 ] 106 ]
105 107
106 deps = [ 108 deps = [
107 ":browser", 109 ":browser",
108 ":test_support", 110 ":test_support",
109 "//testing/gmock", 111 "//testing/gmock",
110 "//testing/gtest", 112 "//testing/gtest",
111 ] 113 ]
112 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698