Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: ios/web/BUILD.gn

Issue 2448753002: Refactor wait_util so it isn't coupled to EarlGrey. (Closed)
Patch Set: cleanup Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698