| 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 } | 325 } |
| 326 | 326 |
| 327 source_set("earl_grey_test_support") { | 327 source_set("earl_grey_test_support") { |
| 328 testonly = true | 328 testonly = true |
| 329 | 329 |
| 330 deps = [ | 330 deps = [ |
| 331 ":test_support", | 331 ":test_support", |
| 332 ":web", | 332 ":web", |
| 333 "//base", | 333 "//base", |
| 334 "//base/test:test_support", | 334 "//base/test:test_support", |
| 335 "//ios/testing:ios_test_support", |
| 335 "//ios/testing/earl_grey:earl_grey_support", | 336 "//ios/testing/earl_grey:earl_grey_support", |
| 336 "//ios/third_party/earl_grey", | 337 "//ios/third_party/earl_grey", |
| 337 ] | 338 ] |
| 338 | 339 |
| 339 sources = [ | 340 sources = [ |
| 340 "public/test/earl_grey/js_test_util.h", | 341 "public/test/earl_grey/js_test_util.h", |
| 341 "public/test/earl_grey/js_test_util.mm", | 342 "public/test/earl_grey/js_test_util.mm", |
| 342 "public/test/earl_grey/web_view_actions.h", | 343 "public/test/earl_grey/web_view_actions.h", |
| 343 "public/test/earl_grey/web_view_actions.mm", | 344 "public/test/earl_grey/web_view_actions.mm", |
| 344 "public/test/earl_grey/web_view_matchers.h", | 345 "public/test/earl_grey/web_view_matchers.h", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 607 } | 608 } |
| 608 | 609 |
| 609 grit("resources") { | 610 grit("resources") { |
| 610 source = "ios_web_resources.grd" | 611 source = "ios_web_resources.grd" |
| 611 use_qualified_include = true | 612 use_qualified_include = true |
| 612 outputs = [ | 613 outputs = [ |
| 613 "grit/ios_web_resources.h", | 614 "grit/ios_web_resources.h", |
| 614 "ios_web_resources.pak", | 615 "ios_web_resources.pak", |
| 615 ] | 616 ] |
| 616 } | 617 } |
| OLD | NEW |