| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "early_page_script_perftest.mm", | 282 "early_page_script_perftest.mm", |
| 283 ] | 283 ] |
| 284 deps = [ | 284 deps = [ |
| 285 "//base", | 285 "//base", |
| 286 "//ios/chrome/test/base:perf_test_support", | 286 "//ios/chrome/test/base:perf_test_support", |
| 287 "//ios/web", | 287 "//ios/web", |
| 288 "//ios/web:test_support", | 288 "//ios/web:test_support", |
| 289 ] | 289 ] |
| 290 libs = [ "WebKit.framework" ] | 290 libs = [ "WebKit.framework" ] |
| 291 } | 291 } |
| 292 | |
| 293 # Clean Skeleton targets. | |
| 294 source_set("web_clean_skeleton") { | |
| 295 sources = [ | |
| 296 "web_mediator+internal.h", | |
| 297 "web_mediator.h", | |
| 298 "web_mediator.mm", | |
| 299 ] | |
| 300 | |
| 301 configs += [ "//build/config/compiler:enable_arc" ] | |
| 302 } | |
| OLD | NEW |