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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 "//ios/web/test:packed_resources", | 573 "//ios/web/test:packed_resources", |
574 "//ios/web/test:resources", | 574 "//ios/web/test:resources", |
575 "//mojo/edk/system", | 575 "//mojo/edk/system", |
576 "//net:test_support", | 576 "//net:test_support", |
577 "//services/service_manager/public/cpp", | 577 "//services/service_manager/public/cpp", |
578 "//testing/gtest", | 578 "//testing/gtest", |
579 "//ui/base:test_support", | 579 "//ui/base:test_support", |
580 ] | 580 ] |
581 sources = [ | 581 sources = [ |
582 "browser_state_web_view_partition_inttest.mm", | 582 "browser_state_web_view_partition_inttest.mm", |
| 583 "navigation/history_state_operations_inttest.mm", |
583 "navigation/window_location_inttest.mm", | 584 "navigation/window_location_inttest.mm", |
584 "public/test/http_server_inttest.mm", | 585 "public/test/http_server_inttest.mm", |
585 "test/run_all_unittests.cc", | 586 "test/run_all_unittests.cc", |
586 "web_state/http_auth_inttest.mm", | 587 "web_state/http_auth_inttest.mm", |
587 "webui/web_ui_mojo_inttest.mm", | 588 "webui/web_ui_mojo_inttest.mm", |
588 ] | 589 ] |
589 | 590 |
590 assert_no_deps = ios_assert_no_deps | 591 assert_no_deps = ios_assert_no_deps |
591 } | 592 } |
592 | 593 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 } | 634 } |
634 | 635 |
635 grit("resources") { | 636 grit("resources") { |
636 source = "ios_web_resources.grd" | 637 source = "ios_web_resources.grd" |
637 use_qualified_include = true | 638 use_qualified_include = true |
638 outputs = [ | 639 outputs = [ |
639 "grit/ios_web_resources.h", | 640 "grit/ios_web_resources.h", |
640 "ios_web_resources.pak", | 641 "ios_web_resources.pak", |
641 ] | 642 ] |
642 } | 643 } |
OLD | NEW |