| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "stop_loading_egtest.mm", | 286 "stop_loading_egtest.mm", |
| 287 "visible_url_egtest.mm", | 287 "visible_url_egtest.mm", |
| 288 "window_open_by_dom_egtest.mm", | 288 "window_open_by_dom_egtest.mm", |
| 289 ] | 289 ] |
| 290 deps = [ | 290 deps = [ |
| 291 "//base", | 291 "//base", |
| 292 "//base/test:test_support", | 292 "//base/test:test_support", |
| 293 "//components/content_settings/core/browser", | 293 "//components/content_settings/core/browser", |
| 294 "//components/content_settings/core/common", | 294 "//components/content_settings/core/common", |
| 295 "//components/strings", | 295 "//components/strings", |
| 296 "//components/version_info:version_info", |
| 296 "//ios/chrome/app/strings", | 297 "//ios/chrome/app/strings", |
| 297 "//ios/chrome/browser", | 298 "//ios/chrome/browser", |
| 298 "//ios/chrome/browser/browser_state", | 299 "//ios/chrome/browser/browser_state", |
| 299 "//ios/chrome/browser/content_settings", | 300 "//ios/chrome/browser/content_settings", |
| 300 "//ios/chrome/browser/ui", | 301 "//ios/chrome/browser/ui", |
| 301 "//ios/chrome/browser/ui/commands", | 302 "//ios/chrome/browser/ui/commands", |
| 302 "//ios/chrome/test/app:test_support", | 303 "//ios/chrome/test/app:test_support", |
| 303 "//ios/chrome/test/earl_grey:test_support", | 304 "//ios/chrome/test/earl_grey:test_support", |
| 304 "//ios/testing:ios_test_support", | 305 "//ios/testing:ios_test_support", |
| 305 "//ios/testing/earl_grey:earl_grey_support", | 306 "//ios/testing/earl_grey:earl_grey_support", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 323 "early_page_script_perftest.mm", | 324 "early_page_script_perftest.mm", |
| 324 ] | 325 ] |
| 325 deps = [ | 326 deps = [ |
| 326 "//base", | 327 "//base", |
| 327 "//ios/chrome/test/base:perf_test_support", | 328 "//ios/chrome/test/base:perf_test_support", |
| 328 "//ios/web", | 329 "//ios/web", |
| 329 "//ios/web:test_support", | 330 "//ios/web:test_support", |
| 330 ] | 331 ] |
| 331 libs = [ "WebKit.framework" ] | 332 libs = [ "WebKit.framework" ] |
| 332 } | 333 } |
| OLD | NEW |