| 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 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 "//third_party/ocmock", | 520 "//third_party/ocmock", |
| 521 "//ui/base:test_support", | 521 "//ui/base:test_support", |
| 522 ] | 522 ] |
| 523 | 523 |
| 524 sources = [ | 524 sources = [ |
| 525 "active_state_manager_impl_unittest.mm", | 525 "active_state_manager_impl_unittest.mm", |
| 526 "browser_state_unittest.cc", | 526 "browser_state_unittest.cc", |
| 527 "history_state_util_unittest.mm", | 527 "history_state_util_unittest.mm", |
| 528 "navigation/crw_navigation_item_storage_unittest.mm", | 528 "navigation/crw_navigation_item_storage_unittest.mm", |
| 529 "navigation/crw_session_controller_unittest.mm", | 529 "navigation/crw_session_controller_unittest.mm", |
| 530 "navigation/crw_session_entry_unittest.mm", | |
| 531 "navigation/crw_session_storage_unittest.mm", | 530 "navigation/crw_session_storage_unittest.mm", |
| 532 "navigation/navigation_item_impl_unittest.mm", | 531 "navigation/navigation_item_impl_unittest.mm", |
| 533 "navigation/navigation_item_storage_test_util.h", | 532 "navigation/navigation_item_storage_test_util.h", |
| 534 "navigation/navigation_item_storage_test_util.mm", | 533 "navigation/navigation_item_storage_test_util.mm", |
| 535 "navigation/navigation_manager_impl_unittest.mm", | 534 "navigation/navigation_manager_impl_unittest.mm", |
| 536 "navigation/nscoder_util_unittest.mm", | 535 "navigation/nscoder_util_unittest.mm", |
| 537 "net/cert_host_pair_unittest.cc", | 536 "net/cert_host_pair_unittest.cc", |
| 538 "net/cert_policy_unittest.cc", | 537 "net/cert_policy_unittest.cc", |
| 539 "net/crw_cert_verification_controller_unittest.mm", | 538 "net/crw_cert_verification_controller_unittest.mm", |
| 540 "net/crw_ssl_status_updater_unittest.mm", | 539 "net/crw_ssl_status_updater_unittest.mm", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 663 "ios_web_resources.pak", | 662 "ios_web_resources.pak", |
| 664 ] | 663 ] |
| 665 grit_flags = [ | 664 grit_flags = [ |
| 666 "-E", | 665 "-E", |
| 667 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 666 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 668 ] | 667 ] |
| 669 deps = [ | 668 deps = [ |
| 670 "//mojo/public/js:bindings", | 669 "//mojo/public/js:bindings", |
| 671 ] | 670 ] |
| 672 } | 671 } |
| OLD | NEW |