| 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") { | 8 group("all_tests") { |
| 9 testonly = true | 9 testonly = true |
| 10 deps = [ | 10 deps = [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "//third_party/ocmock", | 39 "//third_party/ocmock", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 sources = [ | 42 sources = [ |
| 43 "ocmock_complex_type_helper.h", | 43 "ocmock_complex_type_helper.h", |
| 44 "ocmock_complex_type_helper.mm", | 44 "ocmock_complex_type_helper.mm", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 | 47 |
| 48 test("ocmock_support_unittest") { | 48 test("ocmock_support_unittest") { |
| 49 configs += [ "//build/config/compiler:enable_arc" ] |
| 49 deps = [ | 50 deps = [ |
| 50 ":ocmock_support", | 51 ":ocmock_support", |
| 51 "//base/test:run_all_unittests", | 52 "//base/test:run_all_unittests", |
| 52 "//base/test:test_support", | 53 "//base/test:test_support", |
| 53 "//testing/gmock", | 54 "//testing/gmock", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 "//third_party/ocmock", | 56 "//third_party/ocmock", |
| 56 ] | 57 ] |
| 57 | 58 |
| 58 sources = [ | 59 sources = [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "data/http_server_files/window_location.html", | 91 "data/http_server_files/window_location.html", |
| 91 "data/http_server_files/window_location.js", | 92 "data/http_server_files/window_location.js", |
| 92 "data/http_server_files/window_open.html", | 93 "data/http_server_files/window_open.html", |
| 93 "data/http_server_files/window_proxy.html", | 94 "data/http_server_files/window_proxy.html", |
| 94 ] | 95 ] |
| 95 outputs = [ | 96 outputs = [ |
| 96 "{{bundle_resources_dir}}/" + | 97 "{{bundle_resources_dir}}/" + |
| 97 "{{source_root_relative_dir}}/{{source_file_part}}", | 98 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 98 ] | 99 ] |
| 99 } | 100 } |
| OLD | NEW |