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

Side by Side Diff: headless/BUILD.gn

Issue 2882193002: [devtools] Add DOMSnapshot domain for dom+layout+style snapshots. (Closed)
Patch Set: move to CSS domain, remove getLayoutTreeAndStyles Created 3 years, 7 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
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("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/util/process_version.gni") 6 import("//build/util/process_version.gni")
7 import("//headless/headless.gni") 7 import("//headless/headless.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "public/headless_export.h", 263 "public/headless_export.h",
264 "public/headless_web_contents.h", 264 "public/headless_web_contents.h",
265 "public/internal/message_dispatcher.h", 265 "public/internal/message_dispatcher.h",
266 "public/internal/value_conversions.h", 266 "public/internal/value_conversions.h",
267 "public/util/black_hole_protocol_handler.cc", 267 "public/util/black_hole_protocol_handler.cc",
268 "public/util/black_hole_protocol_handler.h", 268 "public/util/black_hole_protocol_handler.h",
269 "public/util/deterministic_dispatcher.cc", 269 "public/util/deterministic_dispatcher.cc",
270 "public/util/deterministic_dispatcher.h", 270 "public/util/deterministic_dispatcher.h",
271 "public/util/deterministic_http_protocol_handler.cc", 271 "public/util/deterministic_http_protocol_handler.cc",
272 "public/util/deterministic_http_protocol_handler.h", 272 "public/util/deterministic_http_protocol_handler.h",
273 "public/util/dom_tree_extractor.cc",
274 "public/util/dom_tree_extractor.h",
275 "public/util/error_reporter.cc", 273 "public/util/error_reporter.cc",
276 "public/util/error_reporter.h", 274 "public/util/error_reporter.h",
277 "public/util/expedited_dispatcher.cc", 275 "public/util/expedited_dispatcher.cc",
278 "public/util/expedited_dispatcher.h", 276 "public/util/expedited_dispatcher.h",
279 "public/util/flat_dom_tree_extractor.cc", 277 "public/util/flat_dom_tree_extractor.cc",
280 "public/util/flat_dom_tree_extractor.h", 278 "public/util/flat_dom_tree_extractor.h",
281 "public/util/generic_url_request_job.cc", 279 "public/util/generic_url_request_job.cc",
282 "public/util/generic_url_request_job.h", 280 "public/util/generic_url_request_job.h",
283 "public/util/http_url_fetcher.cc", 281 "public/util/http_url_fetcher.cc",
284 "public/util/http_url_fetcher.h", 282 "public/util/http_url_fetcher.h",
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 } 496 }
499 } 497 }
500 498
501 test("headless_browsertests") { 499 test("headless_browsertests") {
502 sources = [ 500 sources = [
503 "lib/frame_id_browsertest.cc", 501 "lib/frame_id_browsertest.cc",
504 "lib/headless_browser_browsertest.cc", 502 "lib/headless_browser_browsertest.cc",
505 "lib/headless_browser_context_browsertest.cc", 503 "lib/headless_browser_context_browsertest.cc",
506 "lib/headless_devtools_client_browsertest.cc", 504 "lib/headless_devtools_client_browsertest.cc",
507 "lib/headless_web_contents_browsertest.cc", 505 "lib/headless_web_contents_browsertest.cc",
508 "public/util/dom_tree_extractor_browsertest.cc",
509 "public/util/flat_dom_tree_extractor_browsertest.cc", 506 "public/util/flat_dom_tree_extractor_browsertest.cc",
510 "test/headless_browser_test.cc", 507 "test/headless_browser_test.cc",
511 "test/headless_browser_test.h", 508 "test/headless_browser_test.h",
512 "test/headless_test_launcher.cc", 509 "test/headless_test_launcher.cc",
513 "test/test_protocol_handler.cc", 510 "test/test_protocol_handler.cc",
514 "test/test_protocol_handler.h", 511 "test/test_protocol_handler.h",
515 "test/test_url_request_job.cc", 512 "test/test_url_request_job.cc",
516 "test/test_url_request_job.h", 513 "test/test_url_request_job.h",
517 ] 514 ]
518 515
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
704 701
705 executable("headless_example") { 702 executable("headless_example") {
706 sources = [ 703 sources = [
707 "app/headless_example.cc", 704 "app/headless_example.cc",
708 ] 705 ]
709 706
710 deps = [ 707 deps = [
711 ":headless_shell_lib", 708 ":headless_shell_lib",
712 ] 709 ]
713 } 710 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698