| 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_support") { | 5 source_set("test_support") { |
| 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.h", | 10 "ios_chrome_scoped_testing_chrome_browser_provider.h", |
| 11 "ios_chrome_scoped_testing_chrome_browser_provider.mm", | 11 "ios_chrome_scoped_testing_chrome_browser_provider.mm", |
| 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.h", | 14 "ios_chrome_unit_test_suite.h", |
| 15 "ios_chrome_unit_test_suite.mm", | 15 "ios_chrome_unit_test_suite.mm", |
| 16 "testing_application_context.h", | 16 "testing_application_context.h", |
| 17 "testing_application_context.mm", | 17 "testing_application_context.mm", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//base/test:test_support", | 22 "//components/content_settings/core/common", |
| 23 "//components/network_time", | 23 "//components/network_time", |
| 24 "//components/prefs", | 24 "//components/prefs", |
| 25 "//components/prefs:test_support", | 25 "//components/prefs:test_support", |
| 26 "//ios/chrome/browser", | 26 "//ios/chrome/browser", |
| 27 "//ios/chrome/browser/browser_state:browser_state_impl", | 27 "//ios/chrome/browser/browser_state:browser_state_impl", |
| 28 "//ios/chrome/browser/prefs", | 28 "//ios/chrome/browser/prefs", |
| 29 "//ios/public/provider/chrome/browser", | 29 "//ios/public/provider/chrome/browser", |
| 30 "//ios/public/provider/chrome/browser:test_support", | 30 "//ios/public/provider/chrome/browser:test_support", |
| 31 "//ios/web", | 31 "//ios/web", |
| 32 "//ios/web:test_support", |
| 32 "//net", | 33 "//net", |
| 33 "//testing/gmock", | 34 "//testing/gmock", |
| 34 "//testing/gtest", | 35 "//testing/gtest", |
| 35 "//ui/base", | 36 "//ui/base", |
| 36 "//url", | 37 "//url", |
| 37 ] | 38 ] |
| 38 } | 39 } |
| 39 | 40 |
| 40 source_set("run_all_unittests") { | 41 source_set("run_all_unittests") { |
| 41 testonly = true | 42 testonly = true |
| (...skipping 11 matching lines...) Expand all Loading... |
| 53 testonly = true | 54 testonly = true |
| 54 sources = [ | 55 sources = [ |
| 55 "google_toolbox_unittest.mm", | 56 "google_toolbox_unittest.mm", |
| 56 ] | 57 ] |
| 57 deps = [ | 58 deps = [ |
| 58 "//base", | 59 "//base", |
| 59 "//testing/gtest", | 60 "//testing/gtest", |
| 60 "//third_party/google_toolbox_for_mac", | 61 "//third_party/google_toolbox_for_mac", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| OLD | NEW |