| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.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 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 "test/headless_browser_test.h", | 325 "test/headless_browser_test.h", |
| 326 "test/headless_test_launcher.cc", | 326 "test/headless_test_launcher.cc", |
| 327 "test/test_protocol_handler.cc", | 327 "test/test_protocol_handler.cc", |
| 328 "test/test_protocol_handler.h", | 328 "test/test_protocol_handler.h", |
| 329 "test/test_url_request_job.cc", | 329 "test/test_url_request_job.cc", |
| 330 "test/test_url_request_job.h", | 330 "test/test_url_request_job.h", |
| 331 ] | 331 ] |
| 332 | 332 |
| 333 data = [ | 333 data = [ |
| 334 "$root_out_dir/headless_browser_tests.pak", | 334 "$root_out_dir/headless_browser_tests.pak", |
| 335 "$root_out_dir/headless_lib.pak", |
| 336 "//net/tools/testserver/", |
| 337 "//third_party/pyftpdlib/", |
| 338 "//third_party/pywebsocket/", |
| 339 "//third_party/tlslite/", |
| 340 "test/data/", |
| 335 ] | 341 ] |
| 336 | 342 |
| 337 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 338 | 344 |
| 339 deps = [ | 345 deps = [ |
| 340 ":embedder_mojo_for_testing", | 346 ":embedder_mojo_for_testing", |
| 341 ":headless_browser_tests_pak", | 347 ":headless_browser_tests_pak", |
| 342 "//base", | 348 "//base", |
| 343 "//content/test:test_support", | 349 "//content/test:test_support", |
| 344 "//headless:headless_lib", | 350 "//headless:headless_lib", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 362 | 368 |
| 363 executable("headless_shell") { | 369 executable("headless_shell") { |
| 364 sources = [ | 370 sources = [ |
| 365 "app/headless_shell_main.cc", | 371 "app/headless_shell_main.cc", |
| 366 ] | 372 ] |
| 367 | 373 |
| 368 deps = [ | 374 deps = [ |
| 369 "//headless:headless_shell_lib", | 375 "//headless:headless_shell_lib", |
| 370 ] | 376 ] |
| 371 } | 377 } |
| OLD | NEW |