| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 "public/test/fakes/test_web_state_delegate.h", | 411 "public/test/fakes/test_web_state_delegate.h", |
| 412 "public/test/fakes/test_web_state_delegate.mm", | 412 "public/test/fakes/test_web_state_delegate.mm", |
| 413 "public/test/fakes/test_web_view_content_view.h", | 413 "public/test/fakes/test_web_view_content_view.h", |
| 414 "public/test/fakes/test_web_view_content_view.mm", | 414 "public/test/fakes/test_web_view_content_view.mm", |
| 415 "public/test/http_server.h", | 415 "public/test/http_server.h", |
| 416 "public/test/http_server.mm", | 416 "public/test/http_server.mm", |
| 417 "public/test/http_server_util.h", | 417 "public/test/http_server_util.h", |
| 418 "public/test/http_server_util.mm", | 418 "public/test/http_server_util.mm", |
| 419 "public/test/js_test_util.h", | 419 "public/test/js_test_util.h", |
| 420 "public/test/js_test_util.mm", | 420 "public/test/js_test_util.mm", |
| 421 "public/test/mock_image_data_fetcher.h", | |
| 422 "public/test/mock_image_data_fetcher.mm", | |
| 423 "public/test/native_controller_test_util.h", | 421 "public/test/native_controller_test_util.h", |
| 424 "public/test/native_controller_test_util.mm", | 422 "public/test/native_controller_test_util.mm", |
| 425 "public/test/navigation_test_util.h", | 423 "public/test/navigation_test_util.h", |
| 426 "public/test/navigation_test_util.mm", | 424 "public/test/navigation_test_util.mm", |
| 427 "public/test/response_providers/data_response_provider.h", | 425 "public/test/response_providers/data_response_provider.h", |
| 428 "public/test/response_providers/data_response_provider.mm", | 426 "public/test/response_providers/data_response_provider.mm", |
| 429 "public/test/response_providers/delayed_response_provider.h", | 427 "public/test/response_providers/delayed_response_provider.h", |
| 430 "public/test/response_providers/delayed_response_provider.mm", | 428 "public/test/response_providers/delayed_response_provider.mm", |
| 431 "public/test/response_providers/error_page_response_provider.h", | 429 "public/test/response_providers/error_page_response_provider.h", |
| 432 "public/test/response_providers/error_page_response_provider.mm", | 430 "public/test/response_providers/error_page_response_provider.mm", |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 "ios_web_resources.pak", | 663 "ios_web_resources.pak", |
| 666 ] | 664 ] |
| 667 grit_flags = [ | 665 grit_flags = [ |
| 668 "-E", | 666 "-E", |
| 669 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 667 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 670 ] | 668 ] |
| 671 deps = [ | 669 deps = [ |
| 672 "//mojo/public/js:bindings", | 670 "//mojo/public/js:bindings", |
| 673 ] | 671 ] |
| 674 } | 672 } |
| OLD | NEW |