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