| OLD | NEW |
| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "//components/infobars/core", | 99 "//components/infobars/core", |
| 100 "//components/keyed_service/core", | 100 "//components/keyed_service/core", |
| 101 "//ios/chrome/browser", | 101 "//ios/chrome/browser", |
| 102 "//ios/chrome/browser/browser_state:test_support", | 102 "//ios/chrome/browser/browser_state:test_support", |
| 103 "//ios/chrome/browser/infobars", | 103 "//ios/chrome/browser/infobars", |
| 104 "//ios/chrome/browser/ui", | 104 "//ios/chrome/browser/ui", |
| 105 "//ios/chrome/browser/ui/autofill", | 105 "//ios/chrome/browser/ui/autofill", |
| 106 "//ios/chrome/browser/web:test_support", | 106 "//ios/chrome/browser/web:test_support", |
| 107 "//ios/chrome/test/base", | 107 "//ios/chrome/test/base", |
| 108 "//ios/web", | 108 "//ios/web", |
| 109 "//ios/web:test_support", | 109 "//ios/web/public/test:test_support", |
| 110 "//testing/gtest", | 110 "//testing/gtest", |
| 111 "//third_party/ocmock", | 111 "//third_party/ocmock", |
| 112 "//ui/base:test_support", | 112 "//ui/base:test_support", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 | 115 |
| 116 source_set("eg_tests") { | 116 source_set("eg_tests") { |
| 117 configs += [ "//build/config/compiler:enable_arc" ] | 117 configs += [ "//build/config/compiler:enable_arc" ] |
| 118 testonly = true | 118 testonly = true |
| 119 sources = [ | 119 sources = [ |
| 120 "form_input_egtest.mm", | 120 "form_input_egtest.mm", |
| 121 ] | 121 ] |
| 122 deps = [ | 122 deps = [ |
| 123 ":autofill", | 123 ":autofill", |
| 124 "//base", | 124 "//base", |
| 125 "//base/test:test_support", | 125 "//base/test:test_support", |
| 126 "//ios/chrome/app/strings", | 126 "//ios/chrome/app/strings", |
| 127 "//ios/chrome/browser/ui", | 127 "//ios/chrome/browser/ui", |
| 128 "//ios/chrome/test/app:test_support", | 128 "//ios/chrome/test/app:test_support", |
| 129 "//ios/chrome/test/earl_grey:test_support", | 129 "//ios/chrome/test/earl_grey:test_support", |
| 130 "//ios/testing:ios_test_support", | 130 "//ios/testing:ios_test_support", |
| 131 "//ios/testing/earl_grey:earl_grey_support", | 131 "//ios/testing/earl_grey:earl_grey_support", |
| 132 "//ios/third_party/earl_grey", | 132 "//ios/third_party/earl_grey", |
| 133 "//ios/web:earl_grey_test_support", | 133 "//ios/web:earl_grey_test_support", |
| 134 "//ios/web:test_support", | 134 "//ios/web/public/test:test_support", |
| 135 ] | 135 ] |
| 136 } | 136 } |
| OLD | NEW |