| 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") | 5 import("//ios/web/js_compile.gni") |
| 6 | 6 |
| 7 source_set("web") { | 7 source_set("web") { |
| 8 configs += [ "//build/config/compiler:enable_arc" ] |
| 8 sources = [ | 9 sources = [ |
| 9 "dom_altering_lock.h", | 10 "dom_altering_lock.h", |
| 10 "dom_altering_lock.mm", | 11 "dom_altering_lock.mm", |
| 11 "network_activity_indicator_tab_helper.h", | 12 "network_activity_indicator_tab_helper.h", |
| 12 "network_activity_indicator_tab_helper.mm", | 13 "network_activity_indicator_tab_helper.mm", |
| 13 "resubmit_data_controller.h", | 14 "resubmit_data_controller.h", |
| 14 "resubmit_data_controller.mm", | 15 "resubmit_data_controller.mm", |
| 15 ] | 16 ] |
| 16 deps = [ | 17 deps = [ |
| 17 "//base", | 18 "//base", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 outputs = [ | 148 outputs = [ |
| 148 "{{bundle_resources_dir}}/{{source_file_part}}", | 149 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 149 ] | 150 ] |
| 150 } | 151 } |
| 151 | 152 |
| 152 js_compile_unchecked("injected_js") { | 153 js_compile_unchecked("injected_js") { |
| 153 sources = [ | 154 sources = [ |
| 154 "resources/print.js", | 155 "resources/print.js", |
| 155 ] | 156 ] |
| 156 } | 157 } |
| OLD | NEW |