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

Side by Side Diff: headless/BUILD.gn

Issue 1991953002: Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years 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 | « gpu/ipc/service/gpu_init.cc ('k') | headless/DEPS » ('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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "lib/browser/headless_browser_main_parts.cc", 160 "lib/browser/headless_browser_main_parts.cc",
161 "lib/browser/headless_browser_main_parts.h", 161 "lib/browser/headless_browser_main_parts.h",
162 "lib/browser/headless_content_browser_client.cc", 162 "lib/browser/headless_content_browser_client.cc",
163 "lib/browser/headless_content_browser_client.h", 163 "lib/browser/headless_content_browser_client.h",
164 "lib/browser/headless_devtools.cc", 164 "lib/browser/headless_devtools.cc",
165 "lib/browser/headless_devtools.h", 165 "lib/browser/headless_devtools.h",
166 "lib/browser/headless_devtools_client_impl.cc", 166 "lib/browser/headless_devtools_client_impl.cc",
167 "lib/browser/headless_devtools_client_impl.h", 167 "lib/browser/headless_devtools_client_impl.h",
168 "lib/browser/headless_devtools_manager_delegate.cc", 168 "lib/browser/headless_devtools_manager_delegate.cc",
169 "lib/browser/headless_devtools_manager_delegate.h", 169 "lib/browser/headless_devtools_manager_delegate.h",
170 "lib/browser/headless_platform_event_source.cc",
171 "lib/browser/headless_platform_event_source.h",
170 "lib/browser/headless_screen.cc", 172 "lib/browser/headless_screen.cc",
171 "lib/browser/headless_screen.h", 173 "lib/browser/headless_screen.h",
172 "lib/browser/headless_url_request_context_getter.cc", 174 "lib/browser/headless_url_request_context_getter.cc",
173 "lib/browser/headless_url_request_context_getter.h", 175 "lib/browser/headless_url_request_context_getter.h",
174 "lib/browser/headless_web_contents_impl.cc", 176 "lib/browser/headless_web_contents_impl.cc",
175 "lib/browser/headless_web_contents_impl.h", 177 "lib/browser/headless_web_contents_impl.h",
176 "lib/browser/headless_window_parenting_client.cc", 178 "lib/browser/headless_window_parenting_client.cc",
177 "lib/browser/headless_window_parenting_client.h", 179 "lib/browser/headless_window_parenting_client.h",
180 "lib/browser/headless_window_tree_host.cc",
181 "lib/browser/headless_window_tree_host.h",
178 "lib/headless_content_client.cc", 182 "lib/headless_content_client.cc",
179 "lib/headless_content_client.h", 183 "lib/headless_content_client.h",
180 "lib/headless_content_main_delegate.cc", 184 "lib/headless_content_main_delegate.cc",
181 "lib/headless_content_main_delegate.h", 185 "lib/headless_content_main_delegate.h",
182 "lib/renderer/headless_content_renderer_client.cc",
183 "lib/renderer/headless_content_renderer_client.h",
184 "lib/utility/headless_content_utility_client.cc",
185 "lib/utility/headless_content_utility_client.h",
186 "public/headless_browser.cc", 186 "public/headless_browser.cc",
187 "public/headless_browser.h", 187 "public/headless_browser.h",
188 "public/headless_browser_context.h", 188 "public/headless_browser_context.h",
189 "public/headless_devtools_client.h", 189 "public/headless_devtools_client.h",
190 "public/headless_devtools_host.h", 190 "public/headless_devtools_host.h",
191 "public/headless_devtools_target.h", 191 "public/headless_devtools_target.h",
192 "public/headless_export.h", 192 "public/headless_export.h",
193 "public/headless_web_contents.h", 193 "public/headless_web_contents.h",
194 "public/internal/message_dispatcher.h", 194 "public/internal/message_dispatcher.h",
195 "public/internal/value_conversions.h", 195 "public/internal/value_conversions.h",
(...skipping 29 matching lines...) Expand all
225 ] 225 ]
226 226
227 deps = [ 227 deps = [
228 ":gen_devtools_client_api", 228 ":gen_devtools_client_api",
229 ":pak", 229 ":pak",
230 "//base", 230 "//base",
231 "//components/security_state/content", 231 "//components/security_state/content",
232 "//components/security_state/core", 232 "//components/security_state/core",
233 "//content/public/app:both", 233 "//content/public/app:both",
234 "//content/public/browser", 234 "//content/public/browser",
235 "//content/public/child",
236 "//content/public/common", 235 "//content/public/common",
237 "//content/public/common:service_names", 236 "//content/public/common:service_names",
238 "//content/public/renderer",
239 "//content/public/utility",
240 "//net", 237 "//net",
241 "//services/service_manager/public/cpp", 238 "//services/service_manager/public/cpp",
242 "//third_party/mesa:osmesa", 239 "//third_party/mesa:osmesa",
243 "//ui/aura", 240 "//ui/aura",
244 "//ui/base", 241 "//ui/base",
245 "//ui/compositor", 242 "//ui/compositor",
246 "//ui/display", 243 "//ui/display",
247 "//ui/ozone", 244 "//ui/events/devices",
248 "//url", 245 "//url",
249 ] 246 ]
250 247
248 if (use_ozone) {
249 deps += [ "//ui/ozone" ]
250 }
251
251 configs += [ ":headless_implementation" ] 252 configs += [ ":headless_implementation" ]
252 } 253 }
253 254
254 group("headless_tests") { 255 group("headless_tests") {
255 testonly = true 256 testonly = true
256 257
257 deps = [ 258 deps = [
258 ":headless_browsertests", 259 ":headless_browsertests",
259 ":headless_unittests", 260 ":headless_unittests",
260 ] 261 ]
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 362
362 executable("headless_shell") { 363 executable("headless_shell") {
363 sources = [ 364 sources = [
364 "app/headless_shell_main.cc", 365 "app/headless_shell_main.cc",
365 ] 366 ]
366 367
367 deps = [ 368 deps = [
368 "//headless:headless_shell_lib", 369 "//headless:headless_shell_lib",
369 ] 370 ]
370 } 371 }
OLDNEW
« no previous file with comments | « gpu/ipc/service/gpu_init.cc ('k') | headless/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698