| 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 import("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 source_set("web") { | 10 source_set("web") { |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 "public/test/web_view_interaction_test_util.h", | 311 "public/test/web_view_interaction_test_util.h", |
| 312 "public/test/web_view_interaction_test_util.mm", | 312 "public/test/web_view_interaction_test_util.mm", |
| 313 ] | 313 ] |
| 314 } | 314 } |
| 315 | 315 |
| 316 source_set("test_support") { | 316 source_set("test_support") { |
| 317 testonly = true | 317 testonly = true |
| 318 | 318 |
| 319 deps = [ | 319 deps = [ |
| 320 ":web", | 320 ":web", |
| 321 "//base", |
| 321 "//base/test:test_support", | 322 "//base/test:test_support", |
| 322 "//ios/testing:ocmock_support", | 323 "//ios/testing:ocmock_support", |
| 323 "//ios/third_party/gcdwebserver", | 324 "//ios/third_party/gcdwebserver", |
| 324 "//ios/web/test:mojo_bindings", | 325 "//ios/web/test:mojo_bindings", |
| 325 "//net:test_support", | 326 "//net:test_support", |
| 326 "//testing/gmock", | 327 "//testing/gmock", |
| 327 "//testing/gtest", | 328 "//testing/gtest", |
| 328 "//third_party/ocmock", | 329 "//third_party/ocmock", |
| 329 "//ui/base:base", | 330 "//ui/base:base", |
| 330 ] | 331 ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 361 "public/test/test_redirect_observer.h", | 362 "public/test/test_redirect_observer.h", |
| 362 "public/test/test_redirect_observer.mm", | 363 "public/test/test_redirect_observer.mm", |
| 363 "public/test/test_web_client.h", | 364 "public/test/test_web_client.h", |
| 364 "public/test/test_web_client.mm", | 365 "public/test/test_web_client.mm", |
| 365 "public/test/test_web_state.h", | 366 "public/test/test_web_state.h", |
| 366 "public/test/test_web_state.mm", | 367 "public/test/test_web_state.mm", |
| 367 "public/test/test_web_thread.h", | 368 "public/test/test_web_thread.h", |
| 368 "public/test/test_web_thread_bundle.h", | 369 "public/test/test_web_thread_bundle.h", |
| 369 "public/test/test_web_view_content_view.h", | 370 "public/test/test_web_view_content_view.h", |
| 370 "public/test/test_web_view_content_view.mm", | 371 "public/test/test_web_view_content_view.mm", |
| 372 "public/test/web_js_test.h", |
| 371 "public/test/web_test.h", | 373 "public/test/web_test.h", |
| 372 "public/test/web_test.mm", | 374 "public/test/web_test.mm", |
| 373 "public/test/web_test_suite.h", | 375 "public/test/web_test_suite.h", |
| 374 "public/test/web_test_with_web_state.h", | 376 "public/test/web_test_with_web_state.h", |
| 375 "public/test/web_test_with_web_state.mm", | 377 "public/test/web_test_with_web_state.mm", |
| 376 "test/crw_fake_web_controller_observer.h", | 378 "test/crw_fake_web_controller_observer.h", |
| 377 "test/crw_fake_web_controller_observer.mm", | 379 "test/crw_fake_web_controller_observer.mm", |
| 378 "test/test_url_constants.cc", | 380 "test/test_url_constants.cc", |
| 379 "test/test_url_constants.h", | 381 "test/test_url_constants.h", |
| 380 "test/test_web_thread.cc", | 382 "test/test_web_thread.cc", |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 } | 567 } |
| 566 | 568 |
| 567 grit("resources") { | 569 grit("resources") { |
| 568 source = "ios_web_resources.grd" | 570 source = "ios_web_resources.grd" |
| 569 use_qualified_include = true | 571 use_qualified_include = true |
| 570 outputs = [ | 572 outputs = [ |
| 571 "grit/ios_web_resources.h", | 573 "grit/ios_web_resources.h", |
| 572 "ios_web_resources.pak", | 574 "ios_web_resources.pak", |
| 573 ] | 575 ] |
| 574 } | 576 } |
| OLD | NEW |