| 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 "//ios/web", | 268 "//ios/web", |
| 269 "//ios/web:test_support", | 269 "//ios/web:test_support", |
| 270 "//net", | 270 "//net", |
| 271 "//testing/gtest", | 271 "//testing/gtest", |
| 272 "//third_party/ocmock", | 272 "//third_party/ocmock", |
| 273 "//url", | 273 "//url", |
| 274 ] | 274 ] |
| 275 } | 275 } |
| 276 | 276 |
| 277 source_set("eg_tests") { | 277 source_set("eg_tests") { |
| 278 configs += [ "//build/config/compiler:enable_arc" ] |
| 278 testonly = true | 279 testonly = true |
| 279 sources = [ | 280 sources = [ |
| 280 "browsing_egtest.mm", | 281 "browsing_egtest.mm", |
| 281 "browsing_prevent_default_egtest.mm", | 282 "browsing_prevent_default_egtest.mm", |
| 282 "cache_egtest.mm", | 283 "cache_egtest.mm", |
| 283 "child_window_open_by_dom_egtest.mm", | 284 "child_window_open_by_dom_egtest.mm", |
| 284 "forms_egtest.mm", | 285 "forms_egtest.mm", |
| 285 "http_auth_egtest.mm", | 286 "http_auth_egtest.mm", |
| 286 "js_print_egtest.mm", | 287 "js_print_egtest.mm", |
| 287 "navigation_egtest.mm", | 288 "navigation_egtest.mm", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 "early_page_script_perftest.mm", | 329 "early_page_script_perftest.mm", |
| 329 ] | 330 ] |
| 330 deps = [ | 331 deps = [ |
| 331 "//base", | 332 "//base", |
| 332 "//ios/chrome/test/base:perf_test_support", | 333 "//ios/chrome/test/base:perf_test_support", |
| 333 "//ios/web", | 334 "//ios/web", |
| 334 "//ios/web:test_support", | 335 "//ios/web:test_support", |
| 335 ] | 336 ] |
| 336 libs = [ "WebKit.framework" ] | 337 libs = [ "WebKit.framework" ] |
| 337 } | 338 } |
| OLD | NEW |