| 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("u2f") { | 5 source_set("u2f") { |
| 6 sources = [ | 6 sources = [ |
| 7 "u2f_controller.h", | 7 "u2f_controller.h", |
| 8 "u2f_controller.mm", | 8 "u2f_controller.mm", |
| 9 ] | 9 ] |
| 10 deps = [ | 10 deps = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 source_set("unit_tests") { | 24 source_set("unit_tests") { |
| 25 testonly = true | 25 testonly = true |
| 26 sources = [ | 26 sources = [ |
| 27 "u2f_controller_unittest.mm", | 27 "u2f_controller_unittest.mm", |
| 28 ] | 28 ] |
| 29 deps = [ | 29 deps = [ |
| 30 ":u2f", | 30 ":u2f", |
| 31 "//base", | 31 "//base", |
| 32 "//ios/chrome/browser", | 32 "//ios/chrome/browser", |
| 33 "//ios/web", | 33 "//ios/web", |
| 34 "//ios/web:test_support", | 34 "//ios/web/public/test/fakes:test_support", |
| 35 "//testing/gmock", | 35 "//testing/gmock", |
| 36 "//testing/gtest", | 36 "//testing/gtest", |
| 37 "//url", | 37 "//url", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 configs += [ "//build/config/compiler:enable_arc" ] | 40 configs += [ "//build/config/compiler:enable_arc" ] |
| 41 } | 41 } |
| OLD | NEW |