| 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 544 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 ] | 555 ] |
| 556 | 556 |
| 557 assert_no_deps = ios_assert_no_deps | 557 assert_no_deps = ios_assert_no_deps |
| 558 } | 558 } |
| 559 | 559 |
| 560 test("ios_web_inttests") { | 560 test("ios_web_inttests") { |
| 561 deps = [ | 561 deps = [ |
| 562 ":test_support", | 562 ":test_support", |
| 563 ":web", | 563 ":web", |
| 564 "//base/test:test_support", | 564 "//base/test:test_support", |
| 565 "//ios/testing:http_server_bundle_data", |
| 565 "//ios/web/test:mojo_bindings", | 566 "//ios/web/test:mojo_bindings", |
| 566 "//ios/web/test:packed_resources", | 567 "//ios/web/test:packed_resources", |
| 567 "//ios/web/test:resources", | 568 "//ios/web/test:resources", |
| 568 "//mojo/edk/system", | 569 "//mojo/edk/system", |
| 569 "//net:test_support", | 570 "//net:test_support", |
| 570 "//services/service_manager/public/cpp", | 571 "//services/service_manager/public/cpp", |
| 571 "//testing/gtest", | 572 "//testing/gtest", |
| 572 "//ui/base:test_support", | 573 "//ui/base:test_support", |
| 573 ] | 574 ] |
| 574 sources = [ | 575 sources = [ |
| 575 "browser_state_web_view_partition_inttest.mm", | 576 "browser_state_web_view_partition_inttest.mm", |
| 577 "navigation/window_location_inttest.mm", |
| 576 "public/test/http_server_inttest.mm", | 578 "public/test/http_server_inttest.mm", |
| 577 "test/run_all_unittests.cc", | 579 "test/run_all_unittests.cc", |
| 578 "webui/web_ui_mojo_inttest.mm", | 580 "webui/web_ui_mojo_inttest.mm", |
| 579 ] | 581 ] |
| 580 | 582 |
| 581 assert_no_deps = ios_assert_no_deps | 583 assert_no_deps = ios_assert_no_deps |
| 582 } | 584 } |
| 583 | 585 |
| 584 js_compile_bundle("web_ui_bundle") { | 586 js_compile_bundle("web_ui_bundle") { |
| 585 visibility = [ ":js_resources" ] | 587 visibility = [ ":js_resources" ] |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 } | 626 } |
| 625 | 627 |
| 626 grit("resources") { | 628 grit("resources") { |
| 627 source = "ios_web_resources.grd" | 629 source = "ios_web_resources.grd" |
| 628 use_qualified_include = true | 630 use_qualified_include = true |
| 629 outputs = [ | 631 outputs = [ |
| 630 "grit/ios_web_resources.h", | 632 "grit/ios_web_resources.h", |
| 631 "ios_web_resources.pak", | 633 "ios_web_resources.pak", |
| 632 ] | 634 ] |
| 633 } | 635 } |
| OLD | NEW |