OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("test") { |
| 6 testonly = true |
| 7 sources = [ |
| 8 "block_cleanup_test.h", |
| 9 "block_cleanup_test.mm", |
| 10 "ios_chrome_scoped_testing_local_state.cc", |
| 11 "ios_chrome_scoped_testing_local_state.h", |
| 12 "ios_chrome_unit_test_suite.cc", |
| 13 "ios_chrome_unit_test_suite.h", |
| 14 "run_all_unittests.cc", |
| 15 "testing_application_context.cc", |
| 16 "testing_application_context.h", |
| 17 ] |
| 18 |
| 19 deps = [ |
| 20 "//base", |
| 21 "//base:prefs", |
| 22 "//components/network_time", |
| 23 "//ios/chrome/browser", |
| 24 "//ios/public/provider/chrome/browser", |
| 25 "//ios/public/test", |
| 26 "//ios/web", |
| 27 "//testing/gmock", |
| 28 "//testing/gtest", |
| 29 "//ui/base", |
| 30 "//url", |
| 31 ] |
| 32 } |
OLD | NEW |