| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 deps = [ | 176 deps = [ |
| 177 "//third_party/WebKit/Source/core/inspector:protocol_version", | 177 "//third_party/WebKit/Source/core/inspector:protocol_version", |
| 178 ] | 178 ] |
| 179 inputs = [ | 179 inputs = [ |
| 180 "$root_gen_dir/blink/core/inspector/protocol.json", | 180 "$root_gen_dir/blink/core/inspector/protocol.json", |
| 181 ] | 181 ] |
| 182 | 182 |
| 183 outputs = generated_devtools_api | 183 outputs = generated_devtools_api |
| 184 | 184 |
| 185 sources = [ | 185 sources = [ |
| 186 "lib/browser/devtools_api/deprecated_type_conversions_h.template", | |
| 187 "lib/browser/devtools_api/deprecated_types_h.template", | |
| 188 "lib/browser/devtools_api/domain_cc.template", | 186 "lib/browser/devtools_api/domain_cc.template", |
| 189 "lib/browser/devtools_api/domain_h.template", | 187 "lib/browser/devtools_api/domain_h.template", |
| 190 "lib/browser/devtools_api/domain_type_conversions_h.template", | 188 "lib/browser/devtools_api/domain_type_conversions_h.template", |
| 191 "lib/browser/devtools_api/domain_types_cc.template", | 189 "lib/browser/devtools_api/domain_types_cc.template", |
| 192 "lib/browser/devtools_api/domain_types_forward_declarations_h.template", | 190 "lib/browser/devtools_api/domain_types_forward_declarations_h.template", |
| 193 "lib/browser/devtools_api/domain_types_h.template", | 191 "lib/browser/devtools_api/domain_types_h.template", |
| 194 ] | 192 ] |
| 195 | 193 |
| 196 args = [ | 194 args = [ |
| 197 "--protocol", | 195 "--protocol", |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 | 545 |
| 548 executable("headless_example") { | 546 executable("headless_example") { |
| 549 sources = [ | 547 sources = [ |
| 550 "app/headless_example.cc", | 548 "app/headless_example.cc", |
| 551 ] | 549 ] |
| 552 | 550 |
| 553 deps = [ | 551 deps = [ |
| 554 "//headless:headless_shell_lib", | 552 "//headless:headless_shell_lib", |
| 555 ] | 553 ] |
| 556 } | 554 } |
| OLD | NEW |