| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("all_tests") { |
| 9 testonly = true |
| 10 deps = [ |
| 11 ":ocmock_support_unittest", |
| 12 ] |
| 13 } |
| 14 |
| 8 source_set("ios_test_support") { | 15 source_set("ios_test_support") { |
| 9 configs += [ "//build/config/compiler:enable_arc" ] | 16 configs += [ "//build/config/compiler:enable_arc" ] |
| 10 testonly = true | 17 testonly = true |
| 11 | 18 |
| 12 deps = [ | 19 deps = [ |
| 13 "//base/test:test_support", | 20 "//base/test:test_support", |
| 14 ] | 21 ] |
| 15 | 22 |
| 16 sources = [ | 23 sources = [ |
| 17 "wait_util.h", | 24 "wait_util.h", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "data/http_server_files/two_pages.pdf", | 86 "data/http_server_files/two_pages.pdf", |
| 80 "data/http_server_files/window_close.html", | 87 "data/http_server_files/window_close.html", |
| 81 "data/http_server_files/window_open.html", | 88 "data/http_server_files/window_open.html", |
| 82 "data/http_server_files/window_proxy.html", | 89 "data/http_server_files/window_proxy.html", |
| 83 ] | 90 ] |
| 84 outputs = [ | 91 outputs = [ |
| 85 "{{bundle_resources_dir}}/" + | 92 "{{bundle_resources_dir}}/" + |
| 86 "{{source_root_relative_dir}}/{{source_file_part}}", | 93 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 87 ] | 94 ] |
| 88 } | 95 } |
| OLD | NEW |