| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("test") { | 5 source_set("test") { |
| 6 testonly = true | 6 testonly = true |
| 7 sources = [ | 7 sources = [ |
| 8 "block_cleanup_test.h", | 8 "block_cleanup_test.h", |
| 9 "block_cleanup_test.mm", | 9 "block_cleanup_test.mm", |
| 10 "ios_chrome_scoped_testing_chrome_browser_provider.cc", | 10 "ios_chrome_scoped_testing_chrome_browser_provider.cc", |
| 11 "ios_chrome_scoped_testing_chrome_browser_provider.h", | 11 "ios_chrome_scoped_testing_chrome_browser_provider.h", |
| 12 "ios_chrome_scoped_testing_local_state.cc", | 12 "ios_chrome_scoped_testing_local_state.cc", |
| 13 "ios_chrome_scoped_testing_local_state.h", | 13 "ios_chrome_scoped_testing_local_state.h", |
| 14 "ios_chrome_unit_test_suite.cc", | 14 "ios_chrome_unit_test_suite.cc", |
| 15 "ios_chrome_unit_test_suite.h", | 15 "ios_chrome_unit_test_suite.h", |
| 16 "run_all_unittests.cc", | 16 "run_all_unittests.cc", |
| 17 "testing_application_context.cc", | 17 "testing_application_context.cc", |
| 18 "testing_application_context.h", | 18 "testing_application_context.h", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//components/network_time", | 23 "//components/network_time", |
| 24 "//components/prefs", | 24 "//components/prefs", |
| 25 "//ios/chrome/browser", | 25 "//ios/chrome/browser", |
| 26 "//ios/chrome/browser:test_support", |
| 26 "//ios/public/provider/chrome/browser", | 27 "//ios/public/provider/chrome/browser", |
| 27 "//ios/public/test", | |
| 28 "//ios/web", | 28 "//ios/web", |
| 29 "//testing/gmock", | 29 "//testing/gmock", |
| 30 "//testing/gtest", | 30 "//testing/gtest", |
| 31 "//ui/base", | 31 "//ui/base", |
| 32 "//url", | 32 "//url", |
| 33 ] | 33 ] |
| 34 } | 34 } |
| OLD | NEW |