| 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 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 561 ] | 561 ] |
| 562 | 562 |
| 563 assert_no_deps = ios_assert_no_deps | 563 assert_no_deps = ios_assert_no_deps |
| 564 } | 564 } |
| 565 | 565 |
| 566 test("ios_web_inttests") { | 566 test("ios_web_inttests") { |
| 567 deps = [ | 567 deps = [ |
| 568 ":test_support", | 568 ":test_support", |
| 569 ":web", | 569 ":web", |
| 570 "//base/test:test_support", | 570 "//base/test:test_support", |
| 571 "//ios/testing:http_server_bundle_data", |
| 571 "//ios/web/test:mojo_bindings", | 572 "//ios/web/test:mojo_bindings", |
| 572 "//ios/web/test:packed_resources", | 573 "//ios/web/test:packed_resources", |
| 573 "//ios/web/test:resources", | 574 "//ios/web/test:resources", |
| 574 "//mojo/edk/system", | 575 "//mojo/edk/system", |
| 575 "//net:test_support", | 576 "//net:test_support", |
| 576 "//services/service_manager/public/cpp", | 577 "//services/service_manager/public/cpp", |
| 577 "//testing/gtest", | 578 "//testing/gtest", |
| 578 "//ui/base:test_support", | 579 "//ui/base:test_support", |
| 579 ] | 580 ] |
| 580 sources = [ | 581 sources = [ |
| 581 "browser_state_web_view_partition_inttest.mm", | 582 "browser_state_web_view_partition_inttest.mm", |
| 583 "navigation/history_state_operations_inttest.mm", |
| 582 "public/test/http_server_inttest.mm", | 584 "public/test/http_server_inttest.mm", |
| 583 "test/run_all_unittests.cc", | 585 "test/run_all_unittests.cc", |
| 584 "webui/web_ui_mojo_inttest.mm", | 586 "webui/web_ui_mojo_inttest.mm", |
| 585 ] | 587 ] |
| 586 | 588 |
| 587 assert_no_deps = ios_assert_no_deps | 589 assert_no_deps = ios_assert_no_deps |
| 588 } | 590 } |
| 589 | 591 |
| 590 js_compile_bundle("web_ui_bundle") { | 592 js_compile_bundle("web_ui_bundle") { |
| 591 visibility = [ ":js_resources" ] | 593 visibility = [ ":js_resources" ] |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 } | 633 } |
| 632 | 634 |
| 633 grit("resources") { | 635 grit("resources") { |
| 634 source = "ios_web_resources.grd" | 636 source = "ios_web_resources.grd" |
| 635 use_qualified_include = true | 637 use_qualified_include = true |
| 636 outputs = [ | 638 outputs = [ |
| 637 "grit/ios_web_resources.h", | 639 "grit/ios_web_resources.h", |
| 638 "ios_web_resources.pak", | 640 "ios_web_resources.pak", |
| 639 ] | 641 ] |
| 640 } | 642 } |
| OLD | NEW |