| 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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 335 "$root_out_dir/headless_lib.pak", |
| 336 "//net/tools/testserver/", | 336 "//net/tools/testserver/", |
| 337 "//third_party/pyftpdlib/", | 337 "//third_party/pyftpdlib/", |
| 338 "//third_party/pywebsocket/", | 338 "//third_party/pywebsocket/", |
| 339 "//third_party/skia/", |
| 339 "//third_party/tlslite/", | 340 "//third_party/tlslite/", |
| 340 "test/data/", | 341 "test/data/", |
| 341 ] | 342 ] |
| 342 | 343 |
| 343 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 344 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 344 | 345 |
| 345 deps = [ | 346 deps = [ |
| 346 ":embedder_mojo_for_testing", | 347 ":embedder_mojo_for_testing", |
| 347 ":headless_browser_tests_pak", | 348 ":headless_browser_tests_pak", |
| 348 "//base", | 349 "//base", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 368 | 369 |
| 369 executable("headless_shell") { | 370 executable("headless_shell") { |
| 370 sources = [ | 371 sources = [ |
| 371 "app/headless_shell_main.cc", | 372 "app/headless_shell_main.cc", |
| 372 ] | 373 ] |
| 373 | 374 |
| 374 deps = [ | 375 deps = [ |
| 375 "//headless:headless_shell_lib", | 376 "//headless:headless_shell_lib", |
| 376 ] | 377 ] |
| 377 } | 378 } |
| OLD | NEW |