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

Unified Diff: headless/BUILD.gn

Issue 2897503002: Eliminate remaining ../ header includes (Closed)
Patch Set: Make proposed change 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils.h ('k') | third_party/WebKit/public/platform/WebTouchPoint.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/BUILD.gn
diff --git a/headless/BUILD.gn b/headless/BUILD.gn
index 00841786f9a5ec51549d517134efa4d309db7944..c5de06f92ad9688cce9ca7c3b088d4a1181eb447 100644
--- a/headless/BUILD.gn
+++ b/headless/BUILD.gn
@@ -364,6 +364,7 @@ component("headless") {
deps += [
"//components/crash/content/browser",
"//components/security_state/content",
+ "//third_party/WebKit/public:blink_headers",
]
if (enable_basic_printing) {
@@ -573,6 +574,14 @@ if (is_win) {
"lib/browser/headless_content_browser_client.h",
"public/headless_shell.h",
]
+ deps = [
+ ":headless",
+ "//content:sandbox_helper_win",
+ "//content/public/browser",
+ "//content/public/common",
+ "//net",
+ "//sandbox",
+ ]
if (is_multi_dll_chrome) {
defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ]
@@ -583,20 +592,9 @@ if (is_win) {
"lib/headless_content_main_delegate.h",
"lib/headless_content_main_delegate_win.cc",
]
+ deps += [ "//third_party/WebKit/public:blink_headers" ]
}
- deps = [
- ":headless",
- "//content/public/browser",
- "//content/public/common",
- "//net",
- ]
-
- deps += [
- "//content:sandbox_helper_win",
- "//sandbox",
- ]
-
configs += [ ":headless_implementation" ]
}
@@ -613,6 +611,12 @@ if (is_win) {
"app/shell_navigation_request.h",
"public/headless_shell.h",
]
+ deps = [
+ ":headless_renderer",
+ "//content/public/child:child",
+ "//net",
+ "//ui/base",
+ ]
if (is_multi_dll_chrome) {
defines = [ "CHROME_MULTIPLE_DLL_CHILD" ]
@@ -623,15 +627,9 @@ if (is_win) {
"lib/headless_content_main_delegate.h",
"lib/headless_content_main_delegate_win.cc",
]
+ deps += [ "//third_party/WebKit/public:blink_headers" ]
}
- deps = [
- ":headless_renderer",
- "//content/public/child:child",
- "//net",
- "//ui/base",
- ]
-
configs += [ ":headless_implementation" ]
}
}
« no previous file with comments | « gpu/command_buffer/common/gles2_cmd_utils.h ('k') | third_party/WebKit/public/platform/WebTouchPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698