| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//components/strings", | 200 "//components/strings", |
| 201 "//components/task_scheduler_util/browser", | 201 "//components/task_scheduler_util/browser", |
| 202 "//components/version_info", | 202 "//components/version_info", |
| 203 "//ios/chrome/app/strings", | 203 "//ios/chrome/app/strings", |
| 204 "//ios/chrome/browser", | 204 "//ios/chrome/browser", |
| 205 "//ios/chrome/browser:browser_impl", | 205 "//ios/chrome/browser:browser_impl", |
| 206 "//ios/chrome/browser/browser_state", | 206 "//ios/chrome/browser/browser_state", |
| 207 "//ios/chrome/browser/content_settings", | 207 "//ios/chrome/browser/content_settings", |
| 208 "//ios/chrome/browser/infobars", | 208 "//ios/chrome/browser/infobars", |
| 209 "//ios/chrome/browser/ssl", | 209 "//ios/chrome/browser/ssl", |
| 210 "//ios/chrome/browser/tabs", |
| 210 "//ios/chrome/browser/ui/commands", | 211 "//ios/chrome/browser/ui/commands", |
| 211 "//ios/chrome/browser/ui/overscroll_actions", | 212 "//ios/chrome/browser/ui/overscroll_actions", |
| 212 "//ios/chrome/browser/ui/static_content", | 213 "//ios/chrome/browser/ui/static_content", |
| 213 "//ios/public/provider/chrome/browser", | 214 "//ios/public/provider/chrome/browser", |
| 214 "//ios/public/provider/chrome/browser/voice", | 215 "//ios/public/provider/chrome/browser/voice", |
| 215 "//ios/third_party/material_components_ios", | 216 "//ios/third_party/material_components_ios", |
| 216 "//ios/web", | 217 "//ios/web", |
| 217 "//ios/web:user_agent", | 218 "//ios/web:user_agent", |
| 218 "//net", | 219 "//net", |
| 219 "//ui/base", | 220 "//ui/base", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 "early_page_script_perftest.mm", | 323 "early_page_script_perftest.mm", |
| 323 ] | 324 ] |
| 324 deps = [ | 325 deps = [ |
| 325 "//base", | 326 "//base", |
| 326 "//ios/chrome/test/base:perf_test_support", | 327 "//ios/chrome/test/base:perf_test_support", |
| 327 "//ios/web", | 328 "//ios/web", |
| 328 "//ios/web:test_support", | 329 "//ios/web:test_support", |
| 329 ] | 330 ] |
| 330 libs = [ "WebKit.framework" ] | 331 libs = [ "WebKit.framework" ] |
| 331 } | 332 } |
| OLD | NEW |