Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: headless/BUILD.gn

Issue 2092773002: headless: Allow per-context protocol handlers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | headless/lib/browser/headless_browser_context_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 8
9 config("headless_implementation") { 9 config("headless_implementation") {
10 defines = [ "HEADLESS_IMPLEMENTATION" ] 10 defines = [ "HEADLESS_IMPLEMENTATION" ]
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 script = "lib/browser/client_api_generator_unittest.py" 312 script = "lib/browser/client_api_generator_unittest.py"
313 args = [ 313 args = [
314 "--stamp", 314 "--stamp",
315 rebase_path(_stamp, root_build_dir), 315 rebase_path(_stamp, root_build_dir),
316 ] 316 ]
317 } 317 }
318 318
319 test("headless_browsertests") { 319 test("headless_browsertests") {
320 sources = [ 320 sources = [
321 "lib/headless_browser_browsertest.cc", 321 "lib/headless_browser_browsertest.cc",
322 "lib/headless_browser_context_browsertest.cc",
322 "lib/headless_devtools_client_browsertest.cc", 323 "lib/headless_devtools_client_browsertest.cc",
323 "lib/headless_web_contents_browsertest.cc", 324 "lib/headless_web_contents_browsertest.cc",
324 "test/headless_browser_test.cc", 325 "test/headless_browser_test.cc",
325 "test/headless_browser_test.h", 326 "test/headless_browser_test.h",
326 "test/headless_test_launcher.cc", 327 "test/headless_test_launcher.cc",
328 "test/test_protocol_handler.cc",
329 "test/test_protocol_handler.h",
330 "test/test_url_request_job.cc",
331 "test/test_url_request_job.h",
327 ] 332 ]
328 333
329 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] 334 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
330 335
331 deps = [ 336 deps = [
332 "//base", 337 "//base",
333 "//content/test:browsertest_base", 338 "//content/test:browsertest_base",
334 "//content/test:test_support", 339 "//content/test:test_support",
335 "//headless:headless_lib", 340 "//headless:headless_lib",
336 "//testing/gmock", 341 "//testing/gmock",
337 "//testing/gtest", 342 "//testing/gtest",
338 ] 343 ]
339 } 344 }
340 345
341 executable("headless_shell") { 346 executable("headless_shell") {
342 sources = [ 347 sources = [
343 "app/headless_shell.cc", 348 "app/headless_shell.cc",
344 "app/headless_shell_switches.cc", 349 "app/headless_shell_switches.cc",
345 "app/headless_shell_switches.h", 350 "app/headless_shell_switches.h",
346 ] 351 ]
347 352
348 deps = [ 353 deps = [
349 "//headless:headless_lib", 354 "//headless:headless_lib",
350 ] 355 ]
351 } 356 }
OLDNEW
« no previous file with comments | « no previous file | headless/lib/browser/headless_browser_context_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698