| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 deps = [ | 333 deps = [ |
| 334 ":test_support", | 334 ":test_support", |
| 335 ":web", | 335 ":web", |
| 336 "//base", | 336 "//base", |
| 337 "//base/test:test_support", | 337 "//base/test:test_support", |
| 338 "//ios/testing/earl_grey:earl_grey_support", | 338 "//ios/testing/earl_grey:earl_grey_support", |
| 339 "//ios/third_party/earl_grey", | 339 "//ios/third_party/earl_grey", |
| 340 ] | 340 ] |
| 341 | 341 |
| 342 sources = [ | 342 sources = [ |
| 343 "public/test/earl_grey/web_view_actions.h", |
| 344 "public/test/earl_grey/web_view_actions.mm", |
| 343 "public/test/earl_grey/web_view_matchers.h", | 345 "public/test/earl_grey/web_view_matchers.h", |
| 344 "public/test/earl_grey/web_view_matchers.mm", | 346 "public/test/earl_grey/web_view_matchers.mm", |
| 345 "public/test/web_view_interaction_test_util.h", | 347 "public/test/web_view_interaction_test_util.h", |
| 346 "public/test/web_view_interaction_test_util.mm", | 348 "public/test/web_view_interaction_test_util.mm", |
| 347 ] | 349 ] |
| 348 } | 350 } |
| 349 | 351 |
| 350 source_set("test_support") { | 352 source_set("test_support") { |
| 351 testonly = true | 353 testonly = true |
| 352 | 354 |
| (...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 606 } | 608 } |
| 607 | 609 |
| 608 grit("resources") { | 610 grit("resources") { |
| 609 source = "ios_web_resources.grd" | 611 source = "ios_web_resources.grd" |
| 610 use_qualified_include = true | 612 use_qualified_include = true |
| 611 outputs = [ | 613 outputs = [ |
| 612 "grit/ios_web_resources.h", | 614 "grit/ios_web_resources.h", |
| 613 "ios_web_resources.pak", | 615 "ios_web_resources.pak", |
| 614 ] | 616 ] |
| 615 } | 617 } |
| OLD | NEW |