| 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 group("all_tests") { | 10 group("all_tests") { |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 "//ios/web/public/test/fakes", | 366 "//ios/web/public/test/fakes", |
| 367 "//ios/web/public/test/http_server", | 367 "//ios/web/public/test/http_server", |
| 368 ] | 368 ] |
| 369 | 369 |
| 370 sources = [ | 370 sources = [ |
| 371 "public/test/http_server.h", | 371 "public/test/http_server.h", |
| 372 ] | 372 ] |
| 373 } | 373 } |
| 374 | 374 |
| 375 source_set("earl_grey_test_support") { | 375 source_set("earl_grey_test_support") { |
| 376 configs += [ "//build/config/compiler:enable_arc" ] |
| 376 testonly = true | 377 testonly = true |
| 377 | 378 |
| 378 deps = [ | 379 deps = [ |
| 379 ":web", | 380 ":web", |
| 380 "//base", | 381 "//base", |
| 381 "//base/test:test_support", | 382 "//base/test:test_support", |
| 382 "//ios/testing:ios_test_support", | 383 "//ios/testing:ios_test_support", |
| 383 "//ios/testing/earl_grey:earl_grey_support", | 384 "//ios/testing/earl_grey:earl_grey_support", |
| 384 "//ios/third_party/earl_grey", | 385 "//ios/third_party/earl_grey", |
| 385 "//ios/web/public/test", | 386 "//ios/web/public/test", |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 "ios_web_resources.pak", | 646 "ios_web_resources.pak", |
| 646 ] | 647 ] |
| 647 grit_flags = [ | 648 grit_flags = [ |
| 648 "-E", | 649 "-E", |
| 649 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), | 650 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), |
| 650 ] | 651 ] |
| 651 deps = [ | 652 deps = [ |
| 652 "//mojo/public/js:bindings", | 653 "//mojo/public/js:bindings", |
| 653 ] | 654 ] |
| 654 } | 655 } |
| OLD | NEW |