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

Side by Side Diff: headless/BUILD.gn

Issue 2669693002: Minimize headless code that refers to aura. (Closed)
Patch Set: Remove GetTopWindowContainingPoint 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/lib/browser/headless_browser_context_impl.cc » ('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("//headless/headless.gni") 6 import("//headless/headless.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//tools/grit/grit_rule.gni") 9 import("//tools/grit/grit_rule.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "lib/browser/headless_content_browser_client.cc", 200 "lib/browser/headless_content_browser_client.cc",
201 "lib/browser/headless_content_browser_client.h", 201 "lib/browser/headless_content_browser_client.h",
202 "lib/browser/headless_devtools.cc", 202 "lib/browser/headless_devtools.cc",
203 "lib/browser/headless_devtools.h", 203 "lib/browser/headless_devtools.h",
204 "lib/browser/headless_devtools_client_impl.cc", 204 "lib/browser/headless_devtools_client_impl.cc",
205 "lib/browser/headless_devtools_client_impl.h", 205 "lib/browser/headless_devtools_client_impl.h",
206 "lib/browser/headless_devtools_manager_delegate.cc", 206 "lib/browser/headless_devtools_manager_delegate.cc",
207 "lib/browser/headless_devtools_manager_delegate.h", 207 "lib/browser/headless_devtools_manager_delegate.h",
208 "lib/browser/headless_platform_event_source.cc", 208 "lib/browser/headless_platform_event_source.cc",
209 "lib/browser/headless_platform_event_source.h", 209 "lib/browser/headless_platform_event_source.h",
210 "lib/browser/headless_screen.cc",
211 "lib/browser/headless_screen.h",
212 "lib/browser/headless_url_request_context_getter.cc", 210 "lib/browser/headless_url_request_context_getter.cc",
213 "lib/browser/headless_url_request_context_getter.h", 211 "lib/browser/headless_url_request_context_getter.h",
214 "lib/browser/headless_web_contents_impl.cc", 212 "lib/browser/headless_web_contents_impl.cc",
215 "lib/browser/headless_web_contents_impl.h", 213 "lib/browser/headless_web_contents_impl.h",
216 "lib/browser/headless_window_parenting_client.cc",
217 "lib/browser/headless_window_parenting_client.h",
218 "lib/browser/headless_window_tree_host.cc",
219 "lib/browser/headless_window_tree_host.h",
220 "lib/headless_content_client.cc", 214 "lib/headless_content_client.cc",
221 "lib/headless_content_client.h", 215 "lib/headless_content_client.h",
222 "lib/headless_content_main_delegate.cc", 216 "lib/headless_content_main_delegate.cc",
223 "lib/headless_content_main_delegate.h", 217 "lib/headless_content_main_delegate.h",
224 "public/headless_browser.cc", 218 "public/headless_browser.cc",
225 "public/headless_browser.h", 219 "public/headless_browser.h",
226 "public/headless_browser_context.h", 220 "public/headless_browser_context.h",
227 "public/headless_devtools_client.h", 221 "public/headless_devtools_client.h",
228 "public/headless_devtools_host.h", 222 "public/headless_devtools_host.h",
229 "public/headless_devtools_target.h", 223 "public/headless_devtools_target.h",
(...skipping 28 matching lines...) Expand all
258 "public/util/navigation_request.h", 252 "public/util/navigation_request.h",
259 "public/util/testing/generic_url_request_mocks.cc", 253 "public/util/testing/generic_url_request_mocks.cc",
260 "public/util/testing/generic_url_request_mocks.h", 254 "public/util/testing/generic_url_request_mocks.h",
261 "public/util/url_fetcher.cc", 255 "public/util/url_fetcher.cc",
262 "public/util/url_fetcher.h", 256 "public/util/url_fetcher.h",
263 "public/util/url_request_dispatcher.h", 257 "public/util/url_request_dispatcher.h",
264 "public/util/user_agent.cc", 258 "public/util/user_agent.cc",
265 "public/util/user_agent.h", 259 "public/util/user_agent.h",
266 ] 260 ]
267 261
262 if (use_aura) {
263 sources += [
264 "lib/browser/headless_browser_impl_aura.cc",
265 "lib/browser/headless_screen.cc",
266 "lib/browser/headless_screen.h",
267 "lib/browser/headless_window_parenting_client.cc",
268 "lib/browser/headless_window_parenting_client.h",
269 "lib/browser/headless_window_tree_host.cc",
270 "lib/browser/headless_window_tree_host.h",
271 ]
272 }
273
268 deps = [ 274 deps = [
269 ":gen_devtools_client_api", 275 ":gen_devtools_client_api",
270 "//base", 276 "//base",
271 "//components/security_state/content", 277 "//components/security_state/content",
272 "//components/security_state/core", 278 "//components/security_state/core",
273 "//content/public/app:both", 279 "//content/public/app:both",
274 "//content/public/browser", 280 "//content/public/browser",
275 "//content/public/common", 281 "//content/public/common",
276 "//content/public/common:service_names", 282 "//content/public/common:service_names",
277 "//net", 283 "//net",
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 sources = [ 441 sources = [
436 "app/headless_shell_main.cc", 442 "app/headless_shell_main.cc",
437 ] 443 ]
438 444
439 deps = [ 445 deps = [
440 "//headless:headless_shell_lib", 446 "//headless:headless_shell_lib",
441 ] 447 ]
442 448
443 configs += [ ":headless_implementation" ] 449 configs += [ ":headless_implementation" ]
444 } 450 }
OLDNEW
« no previous file with comments | « no previous file | headless/lib/browser/headless_browser_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698