| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 "early_page_script_perftest.mm", | 304 "early_page_script_perftest.mm", |
| 305 ] | 305 ] |
| 306 deps = [ | 306 deps = [ |
| 307 "//base", | 307 "//base", |
| 308 "//ios/chrome/test/base:perf_test_support", | 308 "//ios/chrome/test/base:perf_test_support", |
| 309 "//ios/web", | 309 "//ios/web", |
| 310 "//ios/web:test_support", | 310 "//ios/web:test_support", |
| 311 ] | 311 ] |
| 312 libs = [ "WebKit.framework" ] | 312 libs = [ "WebKit.framework" ] |
| 313 } | 313 } |
| 314 | |
| 315 # Clean Skeleton targets. | |
| 316 source_set("web_clean_skeleton") { | |
| 317 sources = [ | |
| 318 "web_mediator+internal.h", | |
| 319 "web_mediator.h", | |
| 320 "web_mediator.mm", | |
| 321 ] | |
| 322 | |
| 323 configs += [ "//build/config/compiler:enable_arc" ] | |
| 324 } | |
| OLD | NEW |