Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: ios/web/public/test/BUILD.gn

Issue 2898733003: Split up ios/web:test_support. (Closed)
Patch Set: remove public_deps Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_support") {
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:test_support",
16 "//ios/web/public/test/response_providers:test_support",
17 "//ios/web/test:test_support",
18 "//testing/gtest",
19 "//ui/base",
20 "//url",
21 ]
22
23 allow_circular_includes_from = [
24 "//ios/web/public/test/response_providers:test_support",
Eugene But (OOO till 7-30) 2017/05/23 00:15:11 Is it possible to avoid circular dependencies by s
baxley 2017/05/23 21:03:38 These are pretty sticky. I can do the first one, b
25 "//ios/web/test:test_support",
26 ]
27
28 sources = [
29 "http_server.h",
30 "http_server.mm",
31 "http_server_util.h",
32 "http_server_util.mm",
33 "js_test_util.h",
34 "js_test_util.mm",
35 "native_controller_test_util.h",
36 "native_controller_test_util.mm",
37 "navigation_test_util.h",
38 "navigation_test_util.mm",
39 "scoped_testing_web_client.h",
40 "scoped_testing_web_client.mm",
41 "test_redirect_observer.h",
42 "test_redirect_observer.mm",
43 "test_web_thread.h",
44 "test_web_thread_bundle.h",
45 "url_test_util.h",
46 "web_js_test.h",
47 "web_test.h",
48 "web_test.mm",
49 "web_test_suite.h",
50 "web_test_with_web_state.h",
51 "web_test_with_web_state.mm",
52 "web_view_interaction_test_util.h",
53 "web_view_interaction_test_util.mm",
54 ]
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698