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

Side by Side Diff: ios/chrome/browser/autofill/BUILD.gn

Issue 2610863002: Fix deps in all BUILD.gn files in ios. (Closed)
Patch Set: Created 3 years, 11 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("autofill") { 5 source_set("autofill") {
6 sources = [ 6 sources = [
7 "form_input_accessory_view.h", 7 "form_input_accessory_view.h",
8 "form_input_accessory_view.mm", 8 "form_input_accessory_view.mm",
9 "form_input_accessory_view_controller.h", 9 "form_input_accessory_view_controller.h",
10 "form_input_accessory_view_controller.mm", 10 "form_input_accessory_view_controller.mm",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 source_set("autofill_internal") { 44 source_set("autofill_internal") {
45 configs += [ "//build/config/compiler:enable_arc" ] 45 configs += [ "//build/config/compiler:enable_arc" ]
46 sources = [ 46 sources = [
47 "autofill_agent.h", 47 "autofill_agent.h",
48 "autofill_agent.mm", 48 "autofill_agent.mm",
49 "autofill_controller.h", 49 "autofill_controller.h",
50 "autofill_controller.mm", 50 "autofill_controller.mm",
51 ] 51 ]
52 deps = [ 52 deps = [
53 ":autofill",
53 "//base", 54 "//base",
54 "//components/autofill/core/browser", 55 "//components/autofill/core/browser",
55 "//components/autofill/core/common", 56 "//components/autofill/core/common",
56 "//components/autofill/ios/browser", 57 "//components/autofill/ios/browser",
57 "//components/infobars/core", 58 "//components/infobars/core",
58 "//components/pref_registry", 59 "//components/pref_registry",
59 "//components/prefs", 60 "//components/prefs",
60 "//components/signin/core/browser", 61 "//components/signin/core/browser",
61 "//ios/chrome/app/strings", 62 "//ios/chrome/app/strings",
62 "//ios/chrome/browser", 63 "//ios/chrome/browser",
63 "//ios/chrome/browser/autofill",
64 "//ios/chrome/browser/browser_state", 64 "//ios/chrome/browser/browser_state",
65 "//ios/chrome/browser/infobars", 65 "//ios/chrome/browser/infobars",
66 "//ios/chrome/browser/signin", 66 "//ios/chrome/browser/signin",
67 "//ios/chrome/browser/ui/autofill", 67 "//ios/chrome/browser/ui/autofill",
68 "//ios/web", 68 "//ios/web",
69 "//ui/gfx/geometry", 69 "//ui/gfx/geometry",
70 "//url", 70 "//url",
71 ] 71 ]
72 libs = [ "UIKit.framework" ] 72 libs = [ "UIKit.framework" ]
73 } 73 }
74 74
75 source_set("unit_tests") { 75 source_set("unit_tests") {
76 configs += [ "//build/config/compiler:enable_arc" ] 76 configs += [ "//build/config/compiler:enable_arc" ]
77 testonly = true 77 testonly = true
78 sources = [ 78 sources = [
79 "autofill_controller_js_unittest.mm", 79 "autofill_controller_js_unittest.mm",
80 "autofill_controller_unittest.mm", 80 "autofill_controller_unittest.mm",
81 "form_structure_browsertest.mm", 81 "form_structure_browsertest.mm",
82 "form_suggestion_controller_unittest.mm", 82 "form_suggestion_controller_unittest.mm",
83 "js_autofill_manager_unittest.mm", 83 "js_autofill_manager_unittest.mm",
84 "js_suggestion_manager_unittest.mm", 84 "js_suggestion_manager_unittest.mm",
85 ] 85 ]
86 deps = [ 86 deps = [
87 ":autofill",
87 ":autofill_internal", 88 ":autofill_internal",
88 "//base", 89 "//base",
89 "//base/test:test_support", 90 "//base/test:test_support",
90 "//components/autofill/core/browser", 91 "//components/autofill/core/browser",
91 "//components/autofill/core/browser:test_support", 92 "//components/autofill/core/browser:test_support",
92 "//components/autofill/core/common", 93 "//components/autofill/core/common",
93 "//components/autofill/ios/browser", 94 "//components/autofill/ios/browser",
94 "//components/infobars/core", 95 "//components/infobars/core",
95 "//components/keyed_service/core", 96 "//components/keyed_service/core",
96 "//ios/chrome/browser", 97 "//ios/chrome/browser",
97 "//ios/chrome/browser/autofill",
98 "//ios/chrome/browser/browser_state:test_support", 98 "//ios/chrome/browser/browser_state:test_support",
99 "//ios/chrome/browser/infobars", 99 "//ios/chrome/browser/infobars",
100 "//ios/chrome/browser/ui", 100 "//ios/chrome/browser/ui",
101 "//ios/chrome/browser/ui/autofill", 101 "//ios/chrome/browser/ui/autofill",
102 "//ios/chrome/browser/web:test_support", 102 "//ios/chrome/browser/web:test_support",
103 "//ios/chrome/test/base", 103 "//ios/chrome/test/base",
104 "//ios/web", 104 "//ios/web",
105 "//ios/web:test_support", 105 "//ios/web:test_support",
106 "//testing/gtest", 106 "//testing/gtest",
107 "//third_party/ocmock", 107 "//third_party/ocmock",
108 "//ui/base:test_support", 108 "//ui/base:test_support",
109 ] 109 ]
110 } 110 }
111 111
112 source_set("eg_tests") { 112 source_set("eg_tests") {
113 testonly = true 113 testonly = true
114 sources = [ 114 sources = [
115 "form_input_egtest.mm", 115 "form_input_egtest.mm",
116 ] 116 ]
117 deps = [ 117 deps = [
118 ":autofill",
118 "//base", 119 "//base",
119 "//base/test:test_support", 120 "//base/test:test_support",
120 "//ios/chrome/app/strings", 121 "//ios/chrome/app/strings",
121 "//ios/chrome/browser/autofill",
122 "//ios/chrome/browser/ui", 122 "//ios/chrome/browser/ui",
123 "//ios/chrome/test/app:test_support", 123 "//ios/chrome/test/app:test_support",
124 "//ios/chrome/test/earl_grey:test_support", 124 "//ios/chrome/test/earl_grey:test_support",
125 "//ios/testing:ios_test_support", 125 "//ios/testing:ios_test_support",
126 "//ios/testing/earl_grey:earl_grey_support", 126 "//ios/testing/earl_grey:earl_grey_support",
127 "//ios/third_party/earl_grey", 127 "//ios/third_party/earl_grey",
128 "//ios/web:earl_grey_test_support", 128 "//ios/web:earl_grey_test_support",
129 "//ios/web:test_support", 129 "//ios/web:test_support",
130 ] 130 ]
131 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698