| 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 "web_state/web_state_observer_bridge.mm", | 287 "web_state/web_state_observer_bridge.mm", |
| 288 "web_state/web_state_policy_decider.mm", | 288 "web_state/web_state_policy_decider.mm", |
| 289 "web_state/web_state_weak_ptr_factory.h", | 289 "web_state/web_state_weak_ptr_factory.h", |
| 290 "web_state/web_state_weak_ptr_factory.mm", | 290 "web_state/web_state_weak_ptr_factory.mm", |
| 291 "web_state/web_view_internal_creation_util.h", | 291 "web_state/web_view_internal_creation_util.h", |
| 292 "web_state/web_view_internal_creation_util.mm", | 292 "web_state/web_view_internal_creation_util.mm", |
| 293 "web_state/wk_web_view_security_util.h", | 293 "web_state/wk_web_view_security_util.h", |
| 294 "web_state/wk_web_view_security_util.mm", | 294 "web_state/wk_web_view_security_util.mm", |
| 295 ] | 295 ] |
| 296 | 296 |
| 297 libs = [ "WebKit.framework" ] | 297 libs = [ |
| 298 "CoreGraphics.framework", |
| 299 "WebKit.framework", |
| 300 ] |
| 298 | 301 |
| 299 allow_circular_includes_from = [ ":web_arc" ] | 302 allow_circular_includes_from = [ ":web_arc" ] |
| 300 } | 303 } |
| 301 | 304 |
| 302 source_set("core") { | 305 source_set("core") { |
| 303 deps = [ | 306 deps = [ |
| 304 "//base", | 307 "//base", |
| 305 "//url", | 308 "//url", |
| 306 ] | 309 ] |
| 307 | 310 |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 } | 610 } |
| 608 | 611 |
| 609 grit("resources") { | 612 grit("resources") { |
| 610 source = "ios_web_resources.grd" | 613 source = "ios_web_resources.grd" |
| 611 use_qualified_include = true | 614 use_qualified_include = true |
| 612 outputs = [ | 615 outputs = [ |
| 613 "grit/ios_web_resources.h", | 616 "grit/ios_web_resources.h", |
| 614 "ios_web_resources.pak", | 617 "ios_web_resources.pak", |
| 615 ] | 618 ] |
| 616 } | 619 } |
| OLD | NEW |