| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//chrome/chrome_tests.gni") | 6 import("//chrome/chrome_tests.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib | 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib |
| 10 # (embed_js_in_cpp action) | 10 # (embed_js_in_cpp action) |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 184 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 185 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 185 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 186 | 186 |
| 187 deps = [ | 187 deps = [ |
| 188 ":lib", | 188 ":lib", |
| 189 "//build/config/sanitizers:deps", | 189 "//build/config/sanitizers:deps", |
| 190 ] | 190 ] |
| 191 } | 191 } |
| 192 | 192 |
| 193 # TODO(GYP): Delete this after we've converted everything to GN. |
| 194 # The _run targets exist only for compatibility w/ GYP. |
| 195 group("chromedriver_unittests_run") { |
| 196 testonly = true |
| 197 deps = [ |
| 198 ":chromedriver_unittests", |
| 199 ] |
| 200 } |
| 201 |
| 193 test("chromedriver_unittests") { | 202 test("chromedriver_unittests") { |
| 194 sources = | 203 sources = |
| 195 rebase_path(chrome_tests_gypi_values.chrome_driver_unittests_sources, | 204 rebase_path(chrome_tests_gypi_values.chrome_driver_unittests_sources, |
| 196 ".", | 205 ".", |
| 197 "//chrome") | 206 "//chrome") |
| 198 | 207 |
| 199 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 208 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 200 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 209 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 201 | 210 |
| 202 data = [ | 211 data = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 230 ":lib", | 239 ":lib", |
| 231 "//base", | 240 "//base", |
| 232 "//base/test:run_all_unittests", | 241 "//base/test:run_all_unittests", |
| 233 "//net", | 242 "//net", |
| 234 "//net:http_server", | 243 "//net:http_server", |
| 235 "//net:test_support", | 244 "//net:test_support", |
| 236 "//testing/gtest", | 245 "//testing/gtest", |
| 237 "//url", | 246 "//url", |
| 238 ] | 247 ] |
| 239 } | 248 } |
| OLD | NEW |