| 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 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 visibility = [ ":js_resources" ] | 693 visibility = [ ":js_resources" ] |
| 694 closure_entry_point = "__crWeb.webBundle" | 694 closure_entry_point = "__crWeb.webBundle" |
| 695 | 695 |
| 696 sources = [ | 696 sources = [ |
| 697 "web_state/js/resources/base.js", | 697 "web_state/js/resources/base.js", |
| 698 "web_state/js/resources/common.js", | 698 "web_state/js/resources/common.js", |
| 699 "web_state/js/resources/console.js", | 699 "web_state/js/resources/console.js", |
| 700 "web_state/js/resources/context_menu.js", | 700 "web_state/js/resources/context_menu.js", |
| 701 "web_state/js/resources/core.js", | 701 "web_state/js/resources/core.js", |
| 702 "web_state/js/resources/dialog_overrides.js", | 702 "web_state/js/resources/dialog_overrides.js", |
| 703 "web_state/js/resources/form.js", |
| 703 "web_state/js/resources/message.js", | 704 "web_state/js/resources/message.js", |
| 705 "web_state/js/resources/navigation.js", |
| 706 "web_state/js/resources/scroll_workaround.js", |
| 704 "web_state/js/resources/web_bundle.js", | 707 "web_state/js/resources/web_bundle.js", |
| 705 ] | 708 ] |
| 706 } | 709 } |
| 707 | 710 |
| 708 js_compile_checked("js_resources") { | 711 js_compile_checked("js_resources") { |
| 709 public_deps = [ | 712 public_deps = [ |
| 710 ":web_bundle", | 713 ":web_bundle", |
| 711 ":web_ui_bundle", | 714 ":web_ui_bundle", |
| 712 ] | 715 ] |
| 713 | 716 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 725 "ios_web_resources.pak", | 728 "ios_web_resources.pak", |
| 726 ] | 729 ] |
| 727 grit_flags = [ | 730 grit_flags = [ |
| 728 "-E", | 731 "-E", |
| 729 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 732 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 730 ] | 733 ] |
| 731 deps = [ | 734 deps = [ |
| 732 "//mojo/public/js:bindings", | 735 "//mojo/public/js:bindings", |
| 733 ] | 736 ] |
| 734 } | 737 } |
| OLD | NEW |