| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 | 9 |
| 10 source_set("web_arc") { | 10 source_set("web_arc") { |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 | 296 |
| 297 libs = [ | 297 libs = [ |
| 298 "CoreGraphics.framework", | 298 "CoreGraphics.framework", |
| 299 "WebKit.framework", | 299 "WebKit.framework", |
| 300 ] | 300 ] |
| 301 | 301 |
| 302 allow_circular_includes_from = [ ":web_arc" ] | 302 allow_circular_includes_from = [ ":web_arc" ] |
| 303 } | 303 } |
| 304 | 304 |
| 305 source_set("core") { | 305 source_set("core") { |
| 306 configs += [ "//build/config/compiler:enable_arc" ] |
| 306 deps = [ | 307 deps = [ |
| 307 "//base", | 308 "//base", |
| 308 "//url", | 309 "//url", |
| 309 ] | 310 ] |
| 310 | 311 |
| 311 sources = [ | 312 sources = [ |
| 312 "crw_network_activity_indicator_manager.h", | 313 "crw_network_activity_indicator_manager.h", |
| 313 "crw_network_activity_indicator_manager.mm", | 314 "crw_network_activity_indicator_manager.mm", |
| 315 "history_state_util.cc", |
| 314 "history_state_util.h", | 316 "history_state_util.h", |
| 315 "history_state_util.mm", | |
| 316 ] | 317 ] |
| 317 } | 318 } |
| 318 | 319 |
| 319 source_set("user_agent") { | 320 source_set("user_agent") { |
| 320 deps = [ | 321 deps = [ |
| 321 "//base", | 322 "//base", |
| 322 ] | 323 ] |
| 323 | 324 |
| 324 sources = [ | 325 sources = [ |
| 325 "public/user_agent.h", | 326 "public/user_agent.h", |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 612 } | 613 } |
| 613 | 614 |
| 614 grit("resources") { | 615 grit("resources") { |
| 615 source = "ios_web_resources.grd" | 616 source = "ios_web_resources.grd" |
| 616 use_qualified_include = true | 617 use_qualified_include = true |
| 617 outputs = [ | 618 outputs = [ |
| 618 "grit/ios_web_resources.h", | 619 "grit/ios_web_resources.h", |
| 619 "ios_web_resources.pak", | 620 "ios_web_resources.pak", |
| 620 ] | 621 ] |
| 621 } | 622 } |
| OLD | NEW |