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

Side by Side Diff: headless/BUILD.gn

Issue 2687083002: Headless: make URLRequestDispatcher aware of navigations (Closed)
Patch Set: Address nits Created 3 years, 10 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/app/headless_shell.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("//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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 "public/util/flat_dom_tree_extractor.cc", 210 "public/util/flat_dom_tree_extractor.cc",
211 "public/util/flat_dom_tree_extractor.h", 211 "public/util/flat_dom_tree_extractor.h",
212 "public/util/http_url_fetcher.cc", 212 "public/util/http_url_fetcher.cc",
213 "public/util/http_url_fetcher.h", 213 "public/util/http_url_fetcher.h",
214 "public/util/in_memory_protocol_handler.cc", 214 "public/util/in_memory_protocol_handler.cc",
215 "public/util/in_memory_protocol_handler.h", 215 "public/util/in_memory_protocol_handler.h",
216 "public/util/in_memory_request_job.cc", 216 "public/util/in_memory_request_job.cc",
217 "public/util/in_memory_request_job.h", 217 "public/util/in_memory_request_job.h",
218 "public/util/managed_dispatch_url_request_job.cc", 218 "public/util/managed_dispatch_url_request_job.cc",
219 "public/util/managed_dispatch_url_request_job.h", 219 "public/util/managed_dispatch_url_request_job.h",
220 "public/util/navigation_request.h",
220 "public/util/testing/generic_url_request_mocks.cc", 221 "public/util/testing/generic_url_request_mocks.cc",
221 "public/util/testing/generic_url_request_mocks.h", 222 "public/util/testing/generic_url_request_mocks.h",
222 "public/util/url_fetcher.cc", 223 "public/util/url_fetcher.cc",
223 "public/util/url_fetcher.h", 224 "public/util/url_fetcher.h",
224 "public/util/url_request_dispatcher.h", 225 "public/util/url_request_dispatcher.h",
225 "public/util/user_agent.cc", 226 "public/util/user_agent.cc",
226 "public/util/user_agent.h", 227 "public/util/user_agent.h",
227 ] 228 ]
228 229
229 deps = [ 230 deps = [
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 "//content/test:test_support", 354 "//content/test:test_support",
354 "//headless:headless_lib", 355 "//headless:headless_lib",
355 "//testing/gmock", 356 "//testing/gmock",
356 "//testing/gtest", 357 "//testing/gtest",
357 ] 358 ]
358 } 359 }
359 360
360 static_library("headless_shell_lib") { 361 static_library("headless_shell_lib") {
361 sources = [ 362 sources = [
362 "app/headless_shell.cc", 363 "app/headless_shell.cc",
364 "app/headless_shell.h",
363 "app/headless_shell_switches.cc", 365 "app/headless_shell_switches.cc",
364 "app/headless_shell_switches.h", 366 "app/headless_shell_switches.h",
367 "app/shell_navigation_request.cc",
368 "app/shell_navigation_request.h",
365 "public/headless_shell.h", 369 "public/headless_shell.h",
366 ] 370 ]
367 371
368 deps = [ 372 deps = [
369 "//headless:headless_lib", 373 "//headless:headless_lib",
370 ] 374 ]
371 } 375 }
372 376
373 executable("headless_shell") { 377 executable("headless_shell") {
374 sources = [ 378 sources = [
375 "app/headless_shell_main.cc", 379 "app/headless_shell_main.cc",
376 ] 380 ]
377 381
378 deps = [ 382 deps = [
379 "//headless:headless_shell_lib", 383 "//headless:headless_shell_lib",
380 ] 384 ]
381 } 385 }
OLDNEW
« no previous file with comments | « no previous file | headless/app/headless_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698