| 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 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 525 "//third_party/ocmock", | 525 "//third_party/ocmock", |
| 526 "//ui/base:test_support", | 526 "//ui/base:test_support", |
| 527 ] | 527 ] |
| 528 | 528 |
| 529 sources = [ | 529 sources = [ |
| 530 "active_state_manager_impl_unittest.mm", | 530 "active_state_manager_impl_unittest.mm", |
| 531 "browser_state_unittest.cc", | 531 "browser_state_unittest.cc", |
| 532 "history_state_util_unittest.mm", | 532 "history_state_util_unittest.mm", |
| 533 "navigation/crw_navigation_item_storage_unittest.mm", | 533 "navigation/crw_navigation_item_storage_unittest.mm", |
| 534 "navigation/crw_session_controller_unittest.mm", | 534 "navigation/crw_session_controller_unittest.mm", |
| 535 "navigation/crw_session_entry_unittest.mm", | |
| 536 "navigation/crw_session_storage_unittest.mm", | 535 "navigation/crw_session_storage_unittest.mm", |
| 537 "navigation/navigation_item_impl_unittest.mm", | 536 "navigation/navigation_item_impl_unittest.mm", |
| 538 "navigation/navigation_item_storage_test_util.h", | 537 "navigation/navigation_item_storage_test_util.h", |
| 539 "navigation/navigation_item_storage_test_util.mm", | 538 "navigation/navigation_item_storage_test_util.mm", |
| 540 "navigation/navigation_manager_impl_unittest.mm", | 539 "navigation/navigation_manager_impl_unittest.mm", |
| 541 "navigation/nscoder_util_unittest.mm", | 540 "navigation/nscoder_util_unittest.mm", |
| 542 "net/cert_host_pair_unittest.cc", | 541 "net/cert_host_pair_unittest.cc", |
| 543 "net/cert_policy_unittest.cc", | 542 "net/cert_policy_unittest.cc", |
| 544 "net/crw_cert_verification_controller_unittest.mm", | 543 "net/crw_cert_verification_controller_unittest.mm", |
| 545 "net/crw_ssl_status_updater_unittest.mm", | 544 "net/crw_ssl_status_updater_unittest.mm", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 "ios_web_resources.pak", | 670 "ios_web_resources.pak", |
| 672 ] | 671 ] |
| 673 grit_flags = [ | 672 grit_flags = [ |
| 674 "-E", | 673 "-E", |
| 675 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 674 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 676 ] | 675 ] |
| 677 deps = [ | 676 deps = [ |
| 678 "//mojo/public/js:bindings", | 677 "//mojo/public/js:bindings", |
| 679 ] | 678 ] |
| 680 } | 679 } |
| OLD | NEW |