| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "chrome_web_client.mm", | 168 "chrome_web_client.mm", |
| 169 "error_page_content.h", | 169 "error_page_content.h", |
| 170 "error_page_content.mm", | 170 "error_page_content.mm", |
| 171 "external_app_launcher.h", | 171 "external_app_launcher.h", |
| 172 "external_app_launcher.mm", | 172 "external_app_launcher.mm", |
| 173 "passkit_dialog_provider.h", | 173 "passkit_dialog_provider.h", |
| 174 "print_observer.h", | 174 "print_observer.h", |
| 175 "print_observer.mm", | 175 "print_observer.mm", |
| 176 ] | 176 ] |
| 177 deps = [ | 177 deps = [ |
| 178 ":injected_js", |
| 179 ":resources", |
| 178 "//base", | 180 "//base", |
| 179 "//components/content_settings/core/browser", | 181 "//components/content_settings/core/browser", |
| 180 "//components/dom_distiller/core", | 182 "//components/dom_distiller/core", |
| 181 "//components/error_page/common", | 183 "//components/error_page/common", |
| 182 "//components/infobars/core", | 184 "//components/infobars/core", |
| 183 "//components/prefs", | 185 "//components/prefs", |
| 184 "//components/resources", | 186 "//components/resources", |
| 185 "//components/strings", | 187 "//components/strings", |
| 186 "//components/task_scheduler_util/initialization", | 188 "//components/task_scheduler_util/initialization", |
| 187 "//components/task_scheduler_util/variations", | 189 "//components/task_scheduler_util/variations", |
| 188 "//components/version_info", | 190 "//components/version_info", |
| 189 "//ios/chrome/app/strings", | 191 "//ios/chrome/app/strings", |
| 190 "//ios/chrome/browser", | 192 "//ios/chrome/browser", |
| 191 "//ios/chrome/browser:browser_impl", | 193 "//ios/chrome/browser:browser_impl", |
| 192 "//ios/chrome/browser/browser_state", | 194 "//ios/chrome/browser/browser_state", |
| 193 "//ios/chrome/browser/content_settings", | 195 "//ios/chrome/browser/content_settings", |
| 194 "//ios/chrome/browser/ssl", | 196 "//ios/chrome/browser/ssl", |
| 195 "//ios/chrome/browser/ui/commands", | 197 "//ios/chrome/browser/ui/commands", |
| 196 "//ios/chrome/browser/ui/overscroll_actions", | 198 "//ios/chrome/browser/ui/overscroll_actions", |
| 197 "//ios/chrome/browser/ui/static_content", | 199 "//ios/chrome/browser/ui/static_content", |
| 198 "//ios/chrome/browser/web:injected_js", | |
| 199 "//ios/chrome/browser/web:resources", | |
| 200 "//ios/public/provider/chrome/browser", | 200 "//ios/public/provider/chrome/browser", |
| 201 "//ios/public/provider/chrome/browser/voice", | 201 "//ios/public/provider/chrome/browser/voice", |
| 202 "//ios/third_party/material_components_ios", | 202 "//ios/third_party/material_components_ios", |
| 203 "//ios/web", | 203 "//ios/web", |
| 204 "//ios/web:user_agent", | 204 "//ios/web:user_agent", |
| 205 "//net", | 205 "//net", |
| 206 "//ui/base", | 206 "//ui/base", |
| 207 "//ui/gfx", | 207 "//ui/gfx", |
| 208 "//url", | 208 "//url", |
| 209 ] | 209 ] |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 # Clean Skeleton targets. | 315 # Clean Skeleton targets. |
| 316 source_set("web_clean_skeleton") { | 316 source_set("web_clean_skeleton") { |
| 317 sources = [ | 317 sources = [ |
| 318 "web_mediator+internal.h", | 318 "web_mediator+internal.h", |
| 319 "web_mediator.h", | 319 "web_mediator.h", |
| 320 "web_mediator.mm", | 320 "web_mediator.mm", |
| 321 ] | 321 ] |
| 322 | 322 |
| 323 configs += [ "//build/config/compiler:enable_arc" ] | 323 configs += [ "//build/config/compiler:enable_arc" ] |
| 324 } | 324 } |
| OLD | NEW |