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

Side by Side Diff: headless/BUILD.gn

Issue 2745323003: Add CrAppProtocol for headless on Mac (Closed)
Patch Set: updated upstream, small nit Created 3 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 | « no previous file | headless/lib/browser/headless_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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//headless/headless.gni") 6 import("//headless/headless.gni")
7 import("//build/util/process_version.gni") 7 import("//build/util/process_version.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/grit_rule.gni") 10 import("//tools/grit/grit_rule.gni")
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 190
191 static_library("headless_lib") { 191 static_library("headless_lib") {
192 sources = generated_devtools_api + [ 192 sources = generated_devtools_api + [
193 "lib/browser/headless_browser_context_impl.cc", 193 "lib/browser/headless_browser_context_impl.cc",
194 "lib/browser/headless_browser_context_impl.h", 194 "lib/browser/headless_browser_context_impl.h",
195 "lib/browser/headless_browser_context_options.cc", 195 "lib/browser/headless_browser_context_options.cc",
196 "lib/browser/headless_browser_context_options.h", 196 "lib/browser/headless_browser_context_options.h",
197 "lib/browser/headless_browser_impl.cc", 197 "lib/browser/headless_browser_impl.cc",
198 "lib/browser/headless_browser_impl.h", 198 "lib/browser/headless_browser_impl.h",
199 "lib/browser/headless_browser_impl_mac.mm", 199 "lib/browser/headless_browser_impl_mac.mm",
200 "lib/browser/headless_browser_main_parts_mac.mm",
200 "lib/browser/headless_browser_main_parts.cc", 201 "lib/browser/headless_browser_main_parts.cc",
201 "lib/browser/headless_browser_main_parts.h", 202 "lib/browser/headless_browser_main_parts.h",
202 "lib/browser/headless_content_browser_client.cc", 203 "lib/browser/headless_content_browser_client.cc",
203 "lib/browser/headless_content_browser_client.h", 204 "lib/browser/headless_content_browser_client.h",
204 "lib/browser/headless_devtools.cc", 205 "lib/browser/headless_devtools.cc",
205 "lib/browser/headless_devtools.h", 206 "lib/browser/headless_devtools.h",
206 "lib/browser/headless_devtools_client_impl.cc", 207 "lib/browser/headless_devtools_client_impl.cc",
207 "lib/browser/headless_devtools_client_impl.h", 208 "lib/browser/headless_devtools_client_impl.h",
208 "lib/browser/headless_devtools_manager_delegate.cc", 209 "lib/browser/headless_devtools_manager_delegate.cc",
209 "lib/browser/headless_devtools_manager_delegate.h", 210 "lib/browser/headless_devtools_manager_delegate.h",
210 "lib/browser/headless_macros.h", 211 "lib/browser/headless_macros.h",
211 "lib/browser/headless_network_delegate.cc", 212 "lib/browser/headless_network_delegate.cc",
212 "lib/browser/headless_network_delegate.h", 213 "lib/browser/headless_network_delegate.h",
213 "lib/browser/headless_platform_event_source.cc", 214 "lib/browser/headless_platform_event_source.cc",
214 "lib/browser/headless_platform_event_source.h", 215 "lib/browser/headless_platform_event_source.h",
216 "lib/browser/headless_shell_application_mac.mm",
217 "lib/browser/headless_shell_application_mac.h",
215 "lib/browser/headless_url_request_context_getter.cc", 218 "lib/browser/headless_url_request_context_getter.cc",
216 "lib/browser/headless_url_request_context_getter.h", 219 "lib/browser/headless_url_request_context_getter.h",
217 "lib/browser/headless_web_contents_impl.cc", 220 "lib/browser/headless_web_contents_impl.cc",
218 "lib/browser/headless_web_contents_impl.h", 221 "lib/browser/headless_web_contents_impl.h",
219 "lib/headless_crash_reporter_client.cc", 222 "lib/headless_crash_reporter_client.cc",
220 "lib/headless_crash_reporter_client.h", 223 "lib/headless_crash_reporter_client.h",
221 "lib/headless_content_client.cc", 224 "lib/headless_content_client.cc",
222 "lib/headless_content_client.h", 225 "lib/headless_content_client.h",
223 "lib/headless_content_main_delegate.cc", 226 "lib/headless_content_main_delegate.cc",
224 "lib/headless_content_main_delegate.h", 227 "lib/headless_content_main_delegate.h",
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 480
478 executable("headless_example") { 481 executable("headless_example") {
479 sources = [ 482 sources = [
480 "app/headless_example.cc", 483 "app/headless_example.cc",
481 ] 484 ]
482 485
483 deps = [ 486 deps = [
484 "//headless:headless_shell_lib", 487 "//headless:headless_shell_lib",
485 ] 488 ]
486 } 489 }
OLDNEW
« no previous file with comments | « no previous file | headless/lib/browser/headless_browser_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698