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") { | 10 source_set("web") { |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 } | 295 } |
296 | 296 |
297 source_set("earl_grey_test_support") { | 297 source_set("earl_grey_test_support") { |
298 testonly = true | 298 testonly = true |
299 | 299 |
300 deps = [ | 300 deps = [ |
301 ":test_support", | 301 ":test_support", |
302 ":web", | 302 ":web", |
303 "//base", | 303 "//base", |
304 "//base/test:test_support", | 304 "//base/test:test_support", |
| 305 "//ios/testing/earl_grey:earl_grey_support", |
305 "//ios/third_party/earl_grey", | 306 "//ios/third_party/earl_grey", |
306 ] | 307 ] |
307 | 308 |
308 sources = [ | 309 sources = [ |
309 "public/test/earl_grey/web_view_matchers.h", | 310 "public/test/earl_grey/web_view_matchers.h", |
310 "public/test/earl_grey/web_view_matchers.mm", | 311 "public/test/earl_grey/web_view_matchers.mm", |
311 "public/test/web_view_interaction_test_util.h", | 312 "public/test/web_view_interaction_test_util.h", |
312 "public/test/web_view_interaction_test_util.mm", | 313 "public/test/web_view_interaction_test_util.mm", |
313 ] | 314 ] |
314 } | 315 } |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 } | 568 } |
568 | 569 |
569 grit("resources") { | 570 grit("resources") { |
570 source = "ios_web_resources.grd" | 571 source = "ios_web_resources.grd" |
571 use_qualified_include = true | 572 use_qualified_include = true |
572 outputs = [ | 573 outputs = [ |
573 "grit/ios_web_resources.h", | 574 "grit/ios_web_resources.h", |
574 "ios_web_resources.pak", | 575 "ios_web_resources.pak", |
575 ] | 576 ] |
576 } | 577 } |
OLD | NEW |