| 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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 | 592 |
| 593 assert_no_deps = ios_assert_no_deps | 593 assert_no_deps = ios_assert_no_deps |
| 594 } | 594 } |
| 595 | 595 |
| 596 test("ios_web_inttests") { | 596 test("ios_web_inttests") { |
| 597 deps = [ | 597 deps = [ |
| 598 ":test_support", | 598 ":test_support", |
| 599 ":web", | 599 ":web", |
| 600 "//base/test:test_support", | 600 "//base/test:test_support", |
| 601 "//ios/testing:http_server_bundle_data", | 601 "//ios/testing:http_server_bundle_data", |
| 602 "//ios/testing:ios_test_support", |
| 602 "//ios/web/test:mojo_bindings", | 603 "//ios/web/test:mojo_bindings", |
| 603 "//ios/web/test:packed_resources", | 604 "//ios/web/test:packed_resources", |
| 604 "//ios/web/test:resources", | 605 "//ios/web/test:resources", |
| 605 "//mojo/edk/system", | 606 "//mojo/edk/system", |
| 606 "//net:test_support", | 607 "//net:test_support", |
| 607 "//services/service_manager/public/cpp", | 608 "//services/service_manager/public/cpp", |
| 608 "//testing/gtest", | 609 "//testing/gtest", |
| 609 "//ui/base:test_support", | 610 "//ui/base:test_support", |
| 610 ] | 611 ] |
| 611 sources = [ | 612 sources = [ |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 "ios_web_resources.pak", | 673 "ios_web_resources.pak", |
| 673 ] | 674 ] |
| 674 grit_flags = [ | 675 grit_flags = [ |
| 675 "-E", | 676 "-E", |
| 676 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 677 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 677 ] | 678 ] |
| 678 deps = [ | 679 deps = [ |
| 679 "//mojo/public/js:bindings", | 680 "//mojo/public/js:bindings", |
| 680 ] | 681 ] |
| 681 } | 682 } |
| OLD | NEW |