| 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 group("all_tests") { | 10 group("all_tests") { |
| (...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 "public/test/response_providers/response_provider.h", | 444 "public/test/response_providers/response_provider.h", |
| 445 "public/test/response_providers/response_provider.mm", | 445 "public/test/response_providers/response_provider.mm", |
| 446 "public/test/response_providers/string_response_provider.h", | 446 "public/test/response_providers/string_response_provider.h", |
| 447 "public/test/response_providers/string_response_provider.mm", | 447 "public/test/response_providers/string_response_provider.mm", |
| 448 "public/test/scoped_testing_web_client.h", | 448 "public/test/scoped_testing_web_client.h", |
| 449 "public/test/scoped_testing_web_client.mm", | 449 "public/test/scoped_testing_web_client.mm", |
| 450 "public/test/test_redirect_observer.h", | 450 "public/test/test_redirect_observer.h", |
| 451 "public/test/test_redirect_observer.mm", | 451 "public/test/test_redirect_observer.mm", |
| 452 "public/test/test_web_thread.h", | 452 "public/test/test_web_thread.h", |
| 453 "public/test/test_web_thread_bundle.h", | 453 "public/test/test_web_thread_bundle.h", |
| 454 "public/test/url_test_util.h", |
| 454 "public/test/web_js_test.h", | 455 "public/test/web_js_test.h", |
| 455 "public/test/web_test.h", | 456 "public/test/web_test.h", |
| 456 "public/test/web_test.mm", | 457 "public/test/web_test.mm", |
| 457 "public/test/web_test_suite.h", | 458 "public/test/web_test_suite.h", |
| 458 "public/test/web_test_with_web_state.h", | 459 "public/test/web_test_with_web_state.h", |
| 459 "public/test/web_test_with_web_state.mm", | 460 "public/test/web_test_with_web_state.mm", |
| 460 "public/test/web_view_interaction_test_util.h", | 461 "public/test/web_view_interaction_test_util.h", |
| 461 "public/test/web_view_interaction_test_util.mm", | 462 "public/test/web_view_interaction_test_util.mm", |
| 462 "test/crw_fake_web_controller_observer.h", | 463 "test/crw_fake_web_controller_observer.h", |
| 463 "test/crw_fake_web_controller_observer.mm", | 464 "test/crw_fake_web_controller_observer.mm", |
| 464 "test/test_url_constants.cc", | 465 "test/test_url_constants.cc", |
| 465 "test/test_url_constants.h", | 466 "test/test_url_constants.h", |
| 466 "test/test_web_thread.cc", | 467 "test/test_web_thread.cc", |
| 467 "test/test_web_thread_bundle.cc", | 468 "test/test_web_thread_bundle.cc", |
| 469 "test/url_test_util.mm", |
| 468 "test/web_int_test.h", | 470 "test/web_int_test.h", |
| 469 "test/web_int_test.mm", | 471 "test/web_int_test.mm", |
| 470 "test/web_test_suite.mm", | 472 "test/web_test_suite.mm", |
| 471 "test/web_test_with_web_controller.h", | 473 "test/web_test_with_web_controller.h", |
| 472 "test/web_test_with_web_controller.mm", | 474 "test/web_test_with_web_controller.mm", |
| 473 "test/wk_web_view_crash_utils.h", | 475 "test/wk_web_view_crash_utils.h", |
| 474 "test/wk_web_view_crash_utils.mm", | 476 "test/wk_web_view_crash_utils.mm", |
| 475 ] | 477 ] |
| 476 } | 478 } |
| 477 | 479 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 "ios_web_resources.pak", | 670 "ios_web_resources.pak", |
| 669 ] | 671 ] |
| 670 grit_flags = [ | 672 grit_flags = [ |
| 671 "-E", | 673 "-E", |
| 672 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 674 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 673 ] | 675 ] |
| 674 deps = [ | 676 deps = [ |
| 675 "//mojo/public/js:bindings", | 677 "//mojo/public/js:bindings", |
| 676 ] | 678 ] |
| 677 } | 679 } |
| OLD | NEW |