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

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

Issue 1288093004: rAc Wallet extirpation round 4: clean out RPC code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: relative patchset Created 5 years, 4 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 # 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",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 ] 78 ]
79 proto_out_dir = "components/autofill/content/browser/risk/proto" 79 proto_out_dir = "components/autofill/content/browser/risk/proto"
80 } 80 }
81 81
82 source_set("unit_tests") { 82 source_set("unit_tests") {
83 testonly = true 83 testonly = true
84 sources = [ 84 sources = [
85 "content_autofill_driver_unittest.cc", 85 "content_autofill_driver_unittest.cc",
86 "request_autocomplete_manager_unittest.cc", 86 "request_autocomplete_manager_unittest.cc",
87 "wallet/full_wallet_unittest.cc", 87 "wallet/full_wallet_unittest.cc",
88 "wallet/instrument_unittest.cc",
89 "wallet/wallet_address_unittest.cc", 88 "wallet/wallet_address_unittest.cc",
90 "wallet/wallet_client_unittest.cc",
91 "wallet/wallet_items_unittest.cc",
92 "wallet/wallet_service_url_unittest.cc", 89 "wallet/wallet_service_url_unittest.cc",
93 "wallet/wallet_signin_helper_unittest.cc",
94 ] 90 ]
95 91
96 deps = [ 92 deps = [
97 ":browser", 93 ":browser",
98 "//base", 94 "//base",
99 "//components/autofill/content/common", 95 "//components/autofill/content/common",
100 "//components/autofill/content/browser/wallet:test_support", 96 "//components/autofill/content/browser/wallet:test_support",
101 "//components/autofill/core/browser", 97 "//components/autofill/core/browser",
102 "//components/autofill/core/browser:test_support", 98 "//components/autofill/core/browser:test_support",
103 "//components/autofill/core/common", 99 "//components/autofill/core/common",
104 "//content/public/browser", 100 "//content/public/browser",
105 "//content/public/common", 101 "//content/public/common",
106 "//content/test:test_support", 102 "//content/test:test_support",
107 "//google_apis", 103 "//google_apis",
108 "//ipc:test_support", 104 "//ipc:test_support",
109 "//net", 105 "//net",
110 "//net:test_support", 106 "//net:test_support",
111 "//testing/gmock", 107 "//testing/gmock",
112 "//testing/gtest", 108 "//testing/gtest",
113 ] 109 ]
114 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698