| 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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "//ui/base", | 334 "//ui/base", |
| 335 "//url", | 335 "//url", |
| 336 ] | 336 ] |
| 337 libs = [ | 337 libs = [ |
| 338 "UIKit.framework", | 338 "UIKit.framework", |
| 339 "XCTest.framework", | 339 "XCTest.framework", |
| 340 ] | 340 ] |
| 341 } | 341 } |
| 342 | 342 |
| 343 source_set("perf_tests") { | 343 source_set("perf_tests") { |
| 344 configs += [ "//build/config/compiler:enable_arc" ] |
| 344 testonly = true | 345 testonly = true |
| 345 sources = [ | 346 sources = [ |
| 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 |