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

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

Issue 1810213009: blimp: Add settings to allow the client to download the whole page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@record_full_document
Patch Set: Use ContentBrowserClient to override prefs. Created 4 years, 9 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 | « blimp/common/proto/settings.proto ('k') | blimp/engine/app/blimp_browser_main_parts.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/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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_url_request_context_getter.cc", 63 "app/blimp_url_request_context_getter.cc",
64 "app/blimp_url_request_context_getter.h", 64 "app/blimp_url_request_context_getter.h",
65 "app/engine_settings.cc",
66 "app/engine_settings.h",
67 "app/settings_manager.cc",
68 "app/settings_manager.h",
65 "app/switches.cc", 69 "app/switches.cc",
66 "app/switches.h", 70 "app/switches.h",
67 ] 71 ]
68 72
69 deps = [ 73 deps = [
70 ":app_ui", 74 ":app_ui",
71 ":common", 75 ":common",
72 ":session", 76 ":session",
73 "//base", 77 "//base",
74 "//blimp/common/proto", 78 "//blimp/common/proto",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "//components/version_info", 123 "//components/version_info",
120 "//content/public/common", 124 "//content/public/common",
121 "//ui/base", 125 "//ui/base",
122 ] 126 ]
123 } 127 }
124 128
125 source_set("feature") { 129 source_set("feature") {
126 sources = [ 130 sources = [
127 "feature/engine_render_widget_feature.cc", 131 "feature/engine_render_widget_feature.cc",
128 "feature/engine_render_widget_feature.h", 132 "feature/engine_render_widget_feature.h",
133 "feature/engine_settings_feature.cc",
134 "feature/engine_settings_feature.h",
129 ] 135 ]
130 136
131 deps = [ 137 deps = [
132 "//base", 138 "//base",
133 "//blimp/common/proto", 139 "//blimp/common/proto",
134 "//ui/base", 140 "//ui/base",
135 "//ui/base/ime", 141 "//ui/base/ime",
136 "//ui/resources", 142 "//ui/resources",
137 "//ui/wm", 143 "//ui/wm",
138 ] 144 ]
(...skipping 14 matching lines...) Expand all
153 "//content", 159 "//content",
154 "//net", 160 "//net",
155 ] 161 ]
156 } 162 }
157 163
158 source_set("app_unit_tests") { 164 source_set("app_unit_tests") {
159 testonly = true 165 testonly = true
160 166
161 sources = [ 167 sources = [
162 "app/blimp_engine_config_unittest.cc", 168 "app/blimp_engine_config_unittest.cc",
169 "app/settings_manager_unittest.cc",
163 "app/ui/blimp_screen_unittest.cc", 170 "app/ui/blimp_screen_unittest.cc",
164 ] 171 ]
165 172
166 deps = [ 173 deps = [
167 ":app", 174 ":app",
168 "//base", 175 "//base",
169 "//base/test:run_all_unittests", 176 "//base/test:run_all_unittests",
170 "//base/test:test_support", 177 "//base/test:test_support",
171 "//testing/gmock", 178 "//testing/gmock",
172 "//testing/gtest", 179 "//testing/gtest",
173 "//ui/gfx:test_support", 180 "//ui/gfx:test_support",
174 ] 181 ]
175 } 182 }
176 183
177 source_set("feature_unit_tests") { 184 source_set("feature_unit_tests") {
178 testonly = true 185 testonly = true
179 186
180 sources = [ 187 sources = [
181 "feature/engine_render_widget_feature_unittest.cc", 188 "feature/engine_render_widget_feature_unittest.cc",
189 "feature/engine_settings_feature_unittest.cc",
182 ] 190 ]
183 191
184 deps = [ 192 deps = [
185 ":feature", 193 ":feature",
186 "//base", 194 "//base",
187 "//base/test:run_all_unittests", 195 "//base/test:run_all_unittests",
188 "//base/test:test_support", 196 "//base/test:test_support",
189 "//blimp/common/proto", 197 "//blimp/common/proto",
190 "//content", 198 "//content",
191 "//testing/gmock", 199 "//testing/gmock",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 _rebased_dockerfile, 270 _rebased_dockerfile,
263 "--startup-script", 271 "--startup-script",
264 _rebased_startup_script, 272 _rebased_startup_script,
265 "--manifest", 273 "--manifest",
266 _rebased_manifest, 274 _rebased_manifest,
267 "--output", 275 "--output",
268 rebase_path(_bundle), 276 rebase_path(_bundle),
269 ] 277 ]
270 } 278 }
271 } 279 }
OLDNEW
« no previous file with comments | « blimp/common/proto/settings.proto ('k') | blimp/engine/app/blimp_browser_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698