| 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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 public_deps = [ | 462 public_deps = [ |
| 463 ":ios_web_unittests_arc", | 463 ":ios_web_unittests_arc", |
| 464 ] | 464 ] |
| 465 | 465 |
| 466 assert_no_deps = ios_assert_no_deps | 466 assert_no_deps = ios_assert_no_deps |
| 467 | 467 |
| 468 allow_circular_includes_from = [ ":ios_web_unittests_arc" ] | 468 allow_circular_includes_from = [ ":ios_web_unittests_arc" ] |
| 469 } | 469 } |
| 470 | 470 |
| 471 source_set("ios_web_general_unittests") { | 471 source_set("ios_web_general_unittests") { |
| 472 configs += [ "//build/config/compiler:enable_arc" ] |
| 472 testonly = true | 473 testonly = true |
| 473 deps = [ | 474 deps = [ |
| 474 ":core", | 475 ":core", |
| 475 ":user_agent", | 476 ":user_agent", |
| 476 ":web", | 477 ":web", |
| 477 "//base", | 478 "//base", |
| 478 "//base/test:test_support", | 479 "//base/test:test_support", |
| 479 "//components/payments/core", | 480 "//components/payments/core", |
| 480 "//components/url_formatter", | 481 "//components/url_formatter", |
| 481 "//ios/net", | 482 "//ios/net", |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 "ios_web_resources.pak", | 857 "ios_web_resources.pak", |
| 857 ] | 858 ] |
| 858 grit_flags = [ | 859 grit_flags = [ |
| 859 "-E", | 860 "-E", |
| 860 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 861 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 861 ] | 862 ] |
| 862 deps = [ | 863 deps = [ |
| 863 "//mojo/public/js:bindings", | 864 "//mojo/public/js:bindings", |
| 864 ] | 865 ] |
| 865 } | 866 } |
| OLD | NEW |