| 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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 537 "webui/mojo_facade_unittest.mm", | 537 "webui/mojo_facade_unittest.mm", |
| 538 "webui/url_fetcher_block_adapter_unittest.mm", | 538 "webui/url_fetcher_block_adapter_unittest.mm", |
| 539 ] | 539 ] |
| 540 | 540 |
| 541 assert_no_deps = ios_assert_no_deps | 541 assert_no_deps = ios_assert_no_deps |
| 542 | 542 |
| 543 allow_circular_includes_from = [ ":ios_web_unittests_arc" ] | 543 allow_circular_includes_from = [ ":ios_web_unittests_arc" ] |
| 544 } | 544 } |
| 545 | 545 |
| 546 test("ios_web_inttests") { | 546 test("ios_web_inttests") { |
| 547 configs += [ "//build/config/compiler:enable_arc" ] | |
| 548 deps = [ | 547 deps = [ |
| 549 ":web", | 548 ":web", |
| 550 "//base/test:test_support", | 549 "//base/test:test_support", |
| 551 "//ios/testing:http_server_bundle_data", | 550 "//ios/testing:http_server_bundle_data", |
| 552 "//ios/testing:ios_test_support", | 551 "//ios/testing:ios_test_support", |
| 553 "//ios/web/public/test", | 552 "//ios/web/public/test", |
| 554 "//ios/web/public/test/fakes", | 553 "//ios/web/public/test/fakes", |
| 555 "//ios/web/public/test/http_server", | 554 "//ios/web/public/test/http_server", |
| 556 "//ios/web/test:mojo_bindings", | 555 "//ios/web/test:mojo_bindings", |
| 557 "//ios/web/test:packed_resources", | 556 "//ios/web/test:packed_resources", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 "ios_web_resources.pak", | 631 "ios_web_resources.pak", |
| 633 ] | 632 ] |
| 634 grit_flags = [ | 633 grit_flags = [ |
| 635 "-E", | 634 "-E", |
| 636 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 635 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 637 ] | 636 ] |
| 638 deps = [ | 637 deps = [ |
| 639 "//mojo/public/js:bindings", | 638 "//mojo/public/js:bindings", |
| 640 ] | 639 ] |
| 641 } | 640 } |
| OLD | NEW |