| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 testonly = true | 335 testonly = true |
| 336 | 336 |
| 337 deps = [ | 337 deps = [ |
| 338 ":test_support", | 338 ":test_support", |
| 339 ":web", | 339 ":web", |
| 340 "//base", | 340 "//base", |
| 341 "//base/test:test_support", | 341 "//base/test:test_support", |
| 342 "//ios/testing:ios_test_support", | 342 "//ios/testing:ios_test_support", |
| 343 "//ios/testing/earl_grey:earl_grey_support", | 343 "//ios/testing/earl_grey:earl_grey_support", |
| 344 "//ios/third_party/earl_grey", | 344 "//ios/third_party/earl_grey", |
| 345 "//net:net", |
| 345 ] | 346 ] |
| 346 | 347 |
| 347 sources = [ | 348 sources = [ |
| 348 "public/test/earl_grey/js_test_util.h", | 349 "public/test/earl_grey/js_test_util.h", |
| 349 "public/test/earl_grey/js_test_util.mm", | 350 "public/test/earl_grey/js_test_util.mm", |
| 350 "public/test/earl_grey/web_view_actions.h", | 351 "public/test/earl_grey/web_view_actions.h", |
| 351 "public/test/earl_grey/web_view_actions.mm", | 352 "public/test/earl_grey/web_view_actions.mm", |
| 352 "public/test/earl_grey/web_view_matchers.h", | 353 "public/test/earl_grey/web_view_matchers.h", |
| 353 "public/test/earl_grey/web_view_matchers.mm", | 354 "public/test/earl_grey/web_view_matchers.mm", |
| 354 ] | 355 ] |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 } | 624 } |
| 624 | 625 |
| 625 grit("resources") { | 626 grit("resources") { |
| 626 source = "ios_web_resources.grd" | 627 source = "ios_web_resources.grd" |
| 627 use_qualified_include = true | 628 use_qualified_include = true |
| 628 outputs = [ | 629 outputs = [ |
| 629 "grit/ios_web_resources.h", | 630 "grit/ios_web_resources.h", |
| 630 "ios_web_resources.pak", | 631 "ios_web_resources.pak", |
| 631 ] | 632 ] |
| 632 } | 633 } |
| OLD | NEW |