| 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("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "indexeddb", | 139 "indexeddb", |
| 140 "input", | 140 "input", |
| 141 "inspector", | 141 "inspector", |
| 142 "io", | 142 "io", |
| 143 "layer_tree", | 143 "layer_tree", |
| 144 "log", | 144 "log", |
| 145 "memory", | 145 "memory", |
| 146 "network", | 146 "network", |
| 147 "page", | 147 "page", |
| 148 "profiler", | 148 "profiler", |
| 149 "rendering", |
| 149 "runtime", | 150 "runtime", |
| 150 "security", | 151 "security", |
| 151 "service_worker", | 152 "service_worker", |
| 152 "target", | 153 "target", |
| 153 "tracing", | 154 "tracing", |
| 154 ] | 155 ] |
| 155 | 156 |
| 156 generated_devtools_api = [ | 157 generated_devtools_api = [ |
| 157 "$target_gen_dir/public/domains/types.h", | 158 "$target_gen_dir/public/domains/types.h", |
| 158 "$target_gen_dir/public/domains/type_conversions.h", | 159 "$target_gen_dir/public/domains/type_conversions.h", |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 | 523 |
| 523 executable("headless_example") { | 524 executable("headless_example") { |
| 524 sources = [ | 525 sources = [ |
| 525 "app/headless_example.cc", | 526 "app/headless_example.cc", |
| 526 ] | 527 ] |
| 527 | 528 |
| 528 deps = [ | 529 deps = [ |
| 529 "//headless:headless_shell_lib", | 530 "//headless:headless_shell_lib", |
| 530 ] | 531 ] |
| 531 } | 532 } |
| OLD | NEW |