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

Side by Side Diff: blimp/engine/BUILD.gn

Issue 1864163003: Add new system url request context getter to the blimp engine. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make sure only have one system URLRequestContextGetter around at a time. Created 4 years, 8 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "app/blimp_content_main_delegate.cc", 53 "app/blimp_content_main_delegate.cc",
54 "app/blimp_content_main_delegate.h", 54 "app/blimp_content_main_delegate.h",
55 "app/blimp_content_renderer_client.cc", 55 "app/blimp_content_renderer_client.cc",
56 "app/blimp_content_renderer_client.h", 56 "app/blimp_content_renderer_client.h",
57 "app/blimp_engine_config.cc", 57 "app/blimp_engine_config.cc",
58 "app/blimp_engine_config.h", 58 "app/blimp_engine_config.h",
59 "app/blimp_network_delegate.cc", 59 "app/blimp_network_delegate.cc",
60 "app/blimp_network_delegate.h", 60 "app/blimp_network_delegate.h",
61 "app/blimp_permission_manager.cc", 61 "app/blimp_permission_manager.cc",
62 "app/blimp_permission_manager.h", 62 "app/blimp_permission_manager.h",
63 "app/blimp_system_url_request_context_getter.cc",
64 "app/blimp_system_url_request_context_getter.h",
63 "app/blimp_url_request_context_getter.cc", 65 "app/blimp_url_request_context_getter.cc",
64 "app/blimp_url_request_context_getter.h", 66 "app/blimp_url_request_context_getter.h",
65 "app/engine_settings.cc", 67 "app/engine_settings.cc",
66 "app/engine_settings.h", 68 "app/engine_settings.h",
67 "app/settings_manager.cc", 69 "app/settings_manager.cc",
68 "app/settings_manager.h", 70 "app/settings_manager.h",
69 "app/switches.cc", 71 "app/switches.cc",
70 "app/switches.h", 72 "app/switches.h",
71 ] 73 ]
72 74
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 _rebased_dockerfile, 274 _rebased_dockerfile,
273 "--startup-script", 275 "--startup-script",
274 _rebased_startup_script, 276 _rebased_startup_script,
275 "--manifest", 277 "--manifest",
276 _rebased_manifest, 278 _rebased_manifest,
277 "--output", 279 "--output",
278 rebase_path(_bundle), 280 rebase_path(_bundle),
279 ] 281 ]
280 } 282 }
281 } 283 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698