| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 "//ios/web:user_agent", | 236 "//ios/web:user_agent", |
| 237 "//net", | 237 "//net", |
| 238 "//ui/base", | 238 "//ui/base", |
| 239 "//ui/gfx", | 239 "//ui/gfx", |
| 240 "//url", | 240 "//url", |
| 241 ] | 241 ] |
| 242 libs = [ "UIKit.framework" ] | 242 libs = [ "UIKit.framework" ] |
| 243 } | 243 } |
| 244 | 244 |
| 245 source_set("test_support") { | 245 source_set("test_support") { |
| 246 configs += [ "//build/config/compiler:enable_arc" ] |
| 246 testonly = true | 247 testonly = true |
| 247 sources = [ | 248 sources = [ |
| 248 "chrome_web_test.h", | 249 "chrome_web_test.h", |
| 249 "chrome_web_test.mm", | 250 "chrome_web_test.mm", |
| 250 "fake_mailto_handler_helpers.h", | 251 "fake_mailto_handler_helpers.h", |
| 251 "fake_mailto_handler_helpers.mm", | 252 "fake_mailto_handler_helpers.mm", |
| 252 ] | 253 ] |
| 253 deps = [ | 254 deps = [ |
| 254 "//components/password_manager/core/browser:test_support", | 255 "//components/password_manager/core/browser:test_support", |
| 255 "//ios/chrome/browser/browser_state:test_support", | 256 "//ios/chrome/browser/browser_state:test_support", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "early_page_script_perftest.mm", | 347 "early_page_script_perftest.mm", |
| 347 ] | 348 ] |
| 348 deps = [ | 349 deps = [ |
| 349 "//base", | 350 "//base", |
| 350 "//ios/chrome/test/base:perf_test_support", | 351 "//ios/chrome/test/base:perf_test_support", |
| 351 "//ios/web", | 352 "//ios/web", |
| 352 "//ios/web:test_support", | 353 "//ios/web:test_support", |
| 353 ] | 354 ] |
| 354 libs = [ "WebKit.framework" ] | 355 libs = [ "WebKit.framework" ] |
| 355 } | 356 } |
| OLD | NEW |