| 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("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//headless/headless.gni") | 7 import("//headless/headless.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ] | 123 ] |
| 124 deps = [ | 124 deps = [ |
| 125 ":tab_socket__generator", | 125 ":tab_socket__generator", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| 128 | 128 |
| 129 devtools_domains = [ | 129 devtools_domains = [ |
| 130 "accessibility", | 130 "accessibility", |
| 131 "animation", | 131 "animation", |
| 132 "application_cache", | 132 "application_cache", |
| 133 "browser", |
| 133 "cache_storage", | 134 "cache_storage", |
| 134 "console", | 135 "console", |
| 135 "css", | 136 "css", |
| 136 "database", | 137 "database", |
| 137 "debugger", | 138 "debugger", |
| 138 "device_orientation", | 139 "device_orientation", |
| 139 "dom", | 140 "dom", |
| 140 "dom_debugger", | 141 "dom_debugger", |
| 141 "dom_storage", | 142 "dom_storage", |
| 142 "emulation", | 143 "emulation", |
| (...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 | 703 |
| 703 executable("headless_example") { | 704 executable("headless_example") { |
| 704 sources = [ | 705 sources = [ |
| 705 "app/headless_example.cc", | 706 "app/headless_example.cc", |
| 706 ] | 707 ] |
| 707 | 708 |
| 708 deps = [ | 709 deps = [ |
| 709 ":headless_shell_lib", | 710 ":headless_shell_lib", |
| 710 ] | 711 ] |
| 711 } | 712 } |
| OLD | NEW |