| 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 configs += [ "//build/config/compiler:enable_arc" ] |
| 9 sources = [ | 9 sources = [ |
| 10 "dom_altering_lock.h", | 10 "dom_altering_lock.h", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 js_compile_bundle("chrome_bundle") { | 161 js_compile_bundle("chrome_bundle") { |
| 162 closure_entry_point = "__crWeb.chromeBundle" | 162 closure_entry_point = "__crWeb.chromeBundle" |
| 163 sources = [ | 163 sources = [ |
| 164 "resources/chrome_bundle.js", | 164 "resources/chrome_bundle.js", |
| 165 "resources/payment_request.js", | 165 "resources/payment_request.js", |
| 166 "resources/print.js", | 166 "resources/print.js", |
| 167 ] | 167 ] |
| 168 } | 168 } |
| 169 | 169 |
| 170 source_set("web_internal") { | 170 source_set("web_internal") { |
| 171 configs += [ "//build/config/compiler:enable_arc" ] |
| 171 sources = [ | 172 sources = [ |
| 172 "auto_reload_bridge.h", | 173 "auto_reload_bridge.h", |
| 173 "auto_reload_bridge.mm", | 174 "auto_reload_bridge.mm", |
| 174 "auto_reload_controller.h", | 175 "auto_reload_controller.h", |
| 175 "auto_reload_controller.mm", | 176 "auto_reload_controller.mm", |
| 176 "blocked_popup_tab_helper.h", | 177 "blocked_popup_tab_helper.h", |
| 177 "blocked_popup_tab_helper.mm", | 178 "blocked_popup_tab_helper.mm", |
| 178 "chrome_web_client.h", | 179 "chrome_web_client.h", |
| 179 "chrome_web_client.mm", | 180 "chrome_web_client.mm", |
| 180 "error_page_content.h", | 181 "error_page_content.h", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 "early_page_script_perftest.mm", | 325 "early_page_script_perftest.mm", |
| 325 ] | 326 ] |
| 326 deps = [ | 327 deps = [ |
| 327 "//base", | 328 "//base", |
| 328 "//ios/chrome/test/base:perf_test_support", | 329 "//ios/chrome/test/base:perf_test_support", |
| 329 "//ios/web", | 330 "//ios/web", |
| 330 "//ios/web:test_support", | 331 "//ios/web:test_support", |
| 331 ] | 332 ] |
| 332 libs = [ "WebKit.framework" ] | 333 libs = [ "WebKit.framework" ] |
| 333 } | 334 } |
| OLD | NEW |