| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 "public/test/fakes/test_navigation_manager.h", | 406 "public/test/fakes/test_navigation_manager.h", |
| 407 "public/test/fakes/test_navigation_manager.mm", | 407 "public/test/fakes/test_navigation_manager.mm", |
| 408 "public/test/fakes/test_web_client.h", | 408 "public/test/fakes/test_web_client.h", |
| 409 "public/test/fakes/test_web_client.mm", | 409 "public/test/fakes/test_web_client.mm", |
| 410 "public/test/fakes/test_web_state.h", | 410 "public/test/fakes/test_web_state.h", |
| 411 "public/test/fakes/test_web_state.mm", | 411 "public/test/fakes/test_web_state.mm", |
| 412 "public/test/fakes/test_web_state_delegate.h", | 412 "public/test/fakes/test_web_state_delegate.h", |
| 413 "public/test/fakes/test_web_state_delegate.mm", | 413 "public/test/fakes/test_web_state_delegate.mm", |
| 414 "public/test/fakes/test_web_state_observer.h", | 414 "public/test/fakes/test_web_state_observer.h", |
| 415 "public/test/fakes/test_web_state_observer.mm", | 415 "public/test/fakes/test_web_state_observer.mm", |
| 416 "public/test/fakes/test_web_state_observer_util.h", |
| 417 "public/test/fakes/test_web_state_observer_util.mm", |
| 416 "public/test/fakes/test_web_view_content_view.h", | 418 "public/test/fakes/test_web_view_content_view.h", |
| 417 "public/test/fakes/test_web_view_content_view.mm", | 419 "public/test/fakes/test_web_view_content_view.mm", |
| 418 "public/test/http_server.h", | 420 "public/test/http_server.h", |
| 419 "public/test/http_server.mm", | 421 "public/test/http_server.mm", |
| 420 "public/test/http_server_util.h", | 422 "public/test/http_server_util.h", |
| 421 "public/test/http_server_util.mm", | 423 "public/test/http_server_util.mm", |
| 422 "public/test/js_test_util.h", | 424 "public/test/js_test_util.h", |
| 423 "public/test/js_test_util.mm", | 425 "public/test/js_test_util.mm", |
| 424 "public/test/native_controller_test_util.h", | 426 "public/test/native_controller_test_util.h", |
| 425 "public/test/native_controller_test_util.mm", | 427 "public/test/native_controller_test_util.mm", |
| (...skipping 242 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 |