| 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 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 ] | 653 ] |
| 654 } | 654 } |
| 655 | 655 |
| 656 grit("resources") { | 656 grit("resources") { |
| 657 source = "ios_web_resources.grd" | 657 source = "ios_web_resources.grd" |
| 658 use_qualified_include = true | 658 use_qualified_include = true |
| 659 outputs = [ | 659 outputs = [ |
| 660 "grit/ios_web_resources.h", | 660 "grit/ios_web_resources.h", |
| 661 "ios_web_resources.pak", | 661 "ios_web_resources.pak", |
| 662 ] | 662 ] |
| 663 grit_flags = [ |
| 664 "-E", |
| 665 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 666 ] |
| 667 deps = [ |
| 668 "//mojo/public/js:bindings", |
| 669 ] |
| 663 } | 670 } |
| OLD | NEW |