| OLD | NEW |
| 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "public/util/url_fetcher.cc", | 260 "public/util/url_fetcher.cc", |
| 261 "public/util/url_fetcher.h", | 261 "public/util/url_fetcher.h", |
| 262 "public/util/url_request_dispatcher.h", | 262 "public/util/url_request_dispatcher.h", |
| 263 "public/util/user_agent.cc", | 263 "public/util/user_agent.cc", |
| 264 "public/util/user_agent.h", | 264 "public/util/user_agent.h", |
| 265 ] | 265 ] |
| 266 | 266 |
| 267 if (use_aura) { | 267 if (use_aura) { |
| 268 sources += [ | 268 sources += [ |
| 269 "lib/browser/headless_browser_impl_aura.cc", | 269 "lib/browser/headless_browser_impl_aura.cc", |
| 270 "lib/browser/headless_focus_client.cc", |
| 271 "lib/browser/headless_focus_client.h", |
| 270 "lib/browser/headless_screen.cc", | 272 "lib/browser/headless_screen.cc", |
| 271 "lib/browser/headless_screen.h", | 273 "lib/browser/headless_screen.h", |
| 272 "lib/browser/headless_window_parenting_client.cc", | 274 "lib/browser/headless_window_parenting_client.cc", |
| 273 "lib/browser/headless_window_parenting_client.h", | 275 "lib/browser/headless_window_parenting_client.h", |
| 274 "lib/browser/headless_window_tree_host.cc", | 276 "lib/browser/headless_window_tree_host.cc", |
| 275 "lib/browser/headless_window_tree_host.h", | 277 "lib/browser/headless_window_tree_host.h", |
| 276 ] | 278 ] |
| 277 } | 279 } |
| 278 | 280 |
| 279 deps = [ | 281 deps = [ |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 471 | 473 |
| 472 executable("headless_example") { | 474 executable("headless_example") { |
| 473 sources = [ | 475 sources = [ |
| 474 "app/headless_example.cc", | 476 "app/headless_example.cc", |
| 475 ] | 477 ] |
| 476 | 478 |
| 477 deps = [ | 479 deps = [ |
| 478 "//headless:headless_shell_lib", | 480 "//headless:headless_shell_lib", |
| 479 ] | 481 ] |
| 480 } | 482 } |
| OLD | NEW |