| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/web/js_compile.gni") |
| 6 |
| 5 source_set("web") { | 7 source_set("web") { |
| 6 sources = [ | 8 sources = [ |
| 7 "dom_altering_lock.h", | 9 "dom_altering_lock.h", |
| 8 "dom_altering_lock.mm", | 10 "dom_altering_lock.mm", |
| 9 "resubmit_data_controller.h", | 11 "resubmit_data_controller.h", |
| 10 "resubmit_data_controller.mm", | 12 "resubmit_data_controller.mm", |
| 11 ] | 13 ] |
| 12 deps = [ | 14 deps = [ |
| 13 "//base", | 15 "//base", |
| 14 "//components/strings", | 16 "//components/strings", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 "resources/autofill_right_sep@2x.png", | 125 "resources/autofill_right_sep@2x.png", |
| 124 "resources/autofill_right_sep@3x.png", | 126 "resources/autofill_right_sep@3x.png", |
| 125 "resources/autofill_right_sep_RTL.png", | 127 "resources/autofill_right_sep_RTL.png", |
| 126 "resources/autofill_right_sep_RTL@2x.png", | 128 "resources/autofill_right_sep_RTL@2x.png", |
| 127 "resources/autofill_right_sep_RTL@3x.png", | 129 "resources/autofill_right_sep_RTL@3x.png", |
| 128 ] | 130 ] |
| 129 outputs = [ | 131 outputs = [ |
| 130 "{{bundle_resources_dir}}/{{source_file_part}}", | 132 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| 135 |
| 136 js_compile_unchecked("injected_js") { |
| 137 sources = [ |
| 138 "resources/print.js", |
| 139 ] |
| 140 } |
| OLD | NEW |