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