OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 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 |
| 8 deps = [ |
| 9 "//base", |
| 10 "//base/test:test_support", |
| 11 "//ios/testing:ios_test_support", |
| 12 "//ios/third_party/gcdwebserver", |
| 13 "//ios/web:web", |
| 14 "//ios/web:web_arc", |
| 15 "//ios/web/public/test/fakes", |
| 16 "//ios/web/public/test/http_server", |
| 17 "//ios/web/test:test_support", |
| 18 "//testing/gtest", |
| 19 "//ui/base", |
| 20 "//url", |
| 21 ] |
| 22 |
| 23 allow_circular_includes_from = [ "//ios/web/test:test_support" ] |
| 24 |
| 25 sources = [ |
| 26 "js_test_util.h", |
| 27 "js_test_util.mm", |
| 28 "native_controller_test_util.h", |
| 29 "native_controller_test_util.mm", |
| 30 "navigation_test_util.h", |
| 31 "navigation_test_util.mm", |
| 32 "scoped_testing_web_client.h", |
| 33 "scoped_testing_web_client.mm", |
| 34 "test_redirect_observer.h", |
| 35 "test_redirect_observer.mm", |
| 36 "test_web_thread.h", |
| 37 "test_web_thread_bundle.h", |
| 38 "url_test_util.h", |
| 39 "web_js_test.h", |
| 40 "web_test.h", |
| 41 "web_test.mm", |
| 42 "web_test_suite.h", |
| 43 "web_test_with_web_state.h", |
| 44 "web_test_with_web_state.mm", |
| 45 "web_view_interaction_test_util.h", |
| 46 "web_view_interaction_test_util.mm", |
| 47 ] |
| 48 } |
OLD | NEW |