| 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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 ":injected_js", | 156 ":injected_js", |
| 157 ":resources", | 157 ":resources", |
| 158 "//base", | 158 "//base", |
| 159 "//components/content_settings/core/browser", | 159 "//components/content_settings/core/browser", |
| 160 "//components/dom_distiller/core", | 160 "//components/dom_distiller/core", |
| 161 "//components/error_page/common", | 161 "//components/error_page/common", |
| 162 "//components/infobars/core", | 162 "//components/infobars/core", |
| 163 "//components/prefs", | 163 "//components/prefs", |
| 164 "//components/resources", | 164 "//components/resources", |
| 165 "//components/strings", | 165 "//components/strings", |
| 166 "//components/task_scheduler_util/initialization", | 166 "//components/task_scheduler_util/browser", |
| 167 "//components/task_scheduler_util/variations", | |
| 168 "//components/version_info", | 167 "//components/version_info", |
| 169 "//ios/chrome/app/strings", | 168 "//ios/chrome/app/strings", |
| 170 "//ios/chrome/browser", | 169 "//ios/chrome/browser", |
| 171 "//ios/chrome/browser:browser_impl", | 170 "//ios/chrome/browser:browser_impl", |
| 172 "//ios/chrome/browser/browser_state", | 171 "//ios/chrome/browser/browser_state", |
| 173 "//ios/chrome/browser/content_settings", | 172 "//ios/chrome/browser/content_settings", |
| 174 "//ios/chrome/browser/ssl", | 173 "//ios/chrome/browser/ssl", |
| 175 "//ios/chrome/browser/ui/commands", | 174 "//ios/chrome/browser/ui/commands", |
| 176 "//ios/chrome/browser/ui/overscroll_actions", | 175 "//ios/chrome/browser/ui/overscroll_actions", |
| 177 "//ios/chrome/browser/ui/static_content", | 176 "//ios/chrome/browser/ui/static_content", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 # Clean Skeleton targets. | 292 # Clean Skeleton targets. |
| 294 source_set("web_clean_skeleton") { | 293 source_set("web_clean_skeleton") { |
| 295 sources = [ | 294 sources = [ |
| 296 "web_mediator+internal.h", | 295 "web_mediator+internal.h", |
| 297 "web_mediator.h", | 296 "web_mediator.h", |
| 298 "web_mediator.mm", | 297 "web_mediator.mm", |
| 299 ] | 298 ] |
| 300 | 299 |
| 301 configs += [ "//build/config/compiler:enable_arc" ] | 300 configs += [ "//build/config/compiler:enable_arc" ] |
| 302 } | 301 } |
| OLD | NEW |