| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 "error_page_generator_unittest.mm", | 191 "error_page_generator_unittest.mm", |
| 192 "external_app_launcher_unittest.mm", | 192 "external_app_launcher_unittest.mm", |
| 193 ] | 193 ] |
| 194 deps = [ | 194 deps = [ |
| 195 ":test_support", | 195 ":test_support", |
| 196 ":web_internal", | 196 ":web_internal", |
| 197 "//base", | 197 "//base", |
| 198 "//base/test:test_support", | 198 "//base/test:test_support", |
| 199 "//components/content_settings/core/browser", | 199 "//components/content_settings/core/browser", |
| 200 "//components/infobars/core", | 200 "//components/infobars/core", |
| 201 "//components/payments/core", |
| 201 "//ios/chrome/browser", | 202 "//ios/chrome/browser", |
| 202 "//ios/chrome/browser/browser_state:test_support", | 203 "//ios/chrome/browser/browser_state:test_support", |
| 203 "//ios/chrome/browser/content_settings:content_settings", | 204 "//ios/chrome/browser/content_settings:content_settings", |
| 204 "//ios/chrome/browser/find_in_page", | 205 "//ios/chrome/browser/find_in_page", |
| 205 "//ios/chrome/browser/infobars", | 206 "//ios/chrome/browser/infobars", |
| 206 "//ios/chrome/browser/ui", | 207 "//ios/chrome/browser/ui", |
| 207 "//ios/web", | 208 "//ios/web", |
| 208 "//ios/web/public/test", | 209 "//ios/web/public/test", |
| 209 "//ios/web/public/test/fakes", | 210 "//ios/web/public/test/fakes", |
| 210 "//net", | 211 "//net", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 ] | 273 ] |
| 273 deps = [ | 274 deps = [ |
| 274 "//base", | 275 "//base", |
| 275 "//ios/chrome/test/base:perf_test_support", | 276 "//ios/chrome/test/base:perf_test_support", |
| 276 "//ios/web", | 277 "//ios/web", |
| 277 "//ios/web/public/test", | 278 "//ios/web/public/test", |
| 278 "//ios/web/public/test/fakes", | 279 "//ios/web/public/test/fakes", |
| 279 ] | 280 ] |
| 280 libs = [ "WebKit.framework" ] | 281 libs = [ "WebKit.framework" ] |
| 281 } | 282 } |
| OLD | NEW |