| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 "network", | 146 "network", |
| 147 "page", | 147 "page", |
| 148 "profiler", | 148 "profiler", |
| 149 "runtime", | 149 "runtime", |
| 150 "security", | 150 "security", |
| 151 "service_worker", | 151 "service_worker", |
| 152 "target", | 152 "target", |
| 153 "tracing", | 153 "tracing", |
| 154 ] | 154 ] |
| 155 | 155 |
| 156 generated_devtools_api = [ | 156 generated_devtools_api = [] |
| 157 "$target_gen_dir/public/domains/types.h", | |
| 158 "$target_gen_dir/public/domains/type_conversions.h", | |
| 159 ] | |
| 160 foreach(domain, devtools_domains) { | 157 foreach(domain, devtools_domains) { |
| 161 generated_devtools_api += [ | 158 generated_devtools_api += [ |
| 162 "$target_gen_dir/public/domains/" + domain + ".h", | |
| 163 "$target_gen_dir/public/devtools/domains/" + domain + ".cc", | 159 "$target_gen_dir/public/devtools/domains/" + domain + ".cc", |
| 164 "$target_gen_dir/public/devtools/domains/" + domain + ".h", | 160 "$target_gen_dir/public/devtools/domains/" + domain + ".h", |
| 165 "$target_gen_dir/public/devtools/domains/types_" + domain + ".h", | 161 "$target_gen_dir/public/devtools/domains/types_" + domain + ".h", |
| 166 "$target_gen_dir/public/devtools/domains/types_" + domain + ".cc", | 162 "$target_gen_dir/public/devtools/domains/types_" + domain + ".cc", |
| 167 "$target_gen_dir/public/devtools/internal/type_conversions_" + domain + | 163 "$target_gen_dir/public/devtools/internal/type_conversions_" + domain + |
| 168 ".h", | 164 ".h", |
| 169 "$target_gen_dir/public/devtools/internal/" + | 165 "$target_gen_dir/public/devtools/internal/" + |
| 170 "types_forward_declarations_" + domain + ".h", | 166 "types_forward_declarations_" + domain + ".h", |
| 171 ] | 167 ] |
| 172 } | 168 } |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 | 541 |
| 546 executable("headless_example") { | 542 executable("headless_example") { |
| 547 sources = [ | 543 sources = [ |
| 548 "app/headless_example.cc", | 544 "app/headless_example.cc", |
| 549 ] | 545 ] |
| 550 | 546 |
| 551 deps = [ | 547 deps = [ |
| 552 "//headless:headless_shell_lib", | 548 "//headless:headless_shell_lib", |
| 553 ] | 549 ] |
| 554 } | 550 } |
| OLD | NEW |