| 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") { |
| 11 testonly = true | 11 testonly = true |
| 12 deps = [ | 12 deps = [ |
| 13 ":ios_web_inttests", | 13 ":ios_web_inttests", |
| 14 ":ios_web_unittests", | 14 ":ios_web_unittests", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 source_set("web_arc") { | 18 source_set("web_arc") { |
| 19 deps = [ | 19 deps = [ |
| 20 ":core", | 20 ":core", |
| 21 ":js_resources", | 21 ":js_resources", |
| 22 ":resources", | 22 ":resources", |
| 23 ":user_agent", | 23 ":user_agent", |
| 24 "//base", | 24 "//base", |
| 25 "//components/payments/core", |
| 25 "//components/url_formatter", | 26 "//components/url_formatter", |
| 26 "//ios/net", | 27 "//ios/net", |
| 27 "//ios/third_party/blink:html_tokenizer", | 28 "//ios/third_party/blink:html_tokenizer", |
| 28 "//mojo/public/cpp/system", | 29 "//mojo/public/cpp/system", |
| 29 "//mojo/public/js", | 30 "//mojo/public/js", |
| 30 "//net", | 31 "//net", |
| 31 "//services/service_manager/public/cpp", | 32 "//services/service_manager/public/cpp", |
| 32 "//ui/base", | 33 "//ui/base", |
| 33 "//ui/gfx", | 34 "//ui/gfx", |
| 34 "//ui/gfx/geometry", | 35 "//ui/gfx/geometry", |
| (...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 test("ios_web_unittests") { | 508 test("ios_web_unittests") { |
| 508 deps = [ | 509 deps = [ |
| 509 ":core", | 510 ":core", |
| 510 ":ios_web_unittests_bundle_data", | 511 ":ios_web_unittests_bundle_data", |
| 511 ":run_all_unittests", | 512 ":run_all_unittests", |
| 512 ":test_support", | 513 ":test_support", |
| 513 ":user_agent", | 514 ":user_agent", |
| 514 ":web", | 515 ":web", |
| 515 "//base", | 516 "//base", |
| 516 "//base/test:test_support", | 517 "//base/test:test_support", |
| 518 "//components/payments/core", |
| 517 "//components/url_formatter", | 519 "//components/url_formatter", |
| 518 "//ios/net", | 520 "//ios/net", |
| 519 "//ios/testing:ocmock_support", | 521 "//ios/testing:ocmock_support", |
| 520 "//ios/web/test:mojo_bindings", | 522 "//ios/web/test:mojo_bindings", |
| 521 "//net:test_support", | 523 "//net:test_support", |
| 522 "//services/service_manager/public/cpp", | 524 "//services/service_manager/public/cpp", |
| 523 "//testing/gmock", | 525 "//testing/gmock", |
| 524 "//testing/gtest", | 526 "//testing/gtest", |
| 525 "//third_party/ocmock", | 527 "//third_party/ocmock", |
| 526 "//ui/base:test_support", | 528 "//ui/base:test_support", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 "ios_web_resources.pak", | 674 "ios_web_resources.pak", |
| 673 ] | 675 ] |
| 674 grit_flags = [ | 676 grit_flags = [ |
| 675 "-E", | 677 "-E", |
| 676 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 678 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 677 ] | 679 ] |
| 678 deps = [ | 680 deps = [ |
| 679 "//mojo/public/js:bindings", | 681 "//mojo/public/js:bindings", |
| 680 ] | 682 ] |
| 681 } | 683 } |
| OLD | NEW |