| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 config("headless_implementation") { | 10 config("headless_implementation") { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "$target_gen_dir/public/domains/security.h", | 116 "$target_gen_dir/public/domains/security.h", |
| 117 "$target_gen_dir/public/domains/service_worker.cc", | 117 "$target_gen_dir/public/domains/service_worker.cc", |
| 118 "$target_gen_dir/public/domains/service_worker.h", | 118 "$target_gen_dir/public/domains/service_worker.h", |
| 119 "$target_gen_dir/public/domains/target.cc", | 119 "$target_gen_dir/public/domains/target.cc", |
| 120 "$target_gen_dir/public/domains/target.h", | 120 "$target_gen_dir/public/domains/target.h", |
| 121 "$target_gen_dir/public/domains/tracing.cc", | 121 "$target_gen_dir/public/domains/tracing.cc", |
| 122 "$target_gen_dir/public/domains/tracing.h", | 122 "$target_gen_dir/public/domains/tracing.h", |
| 123 "$target_gen_dir/public/domains/type_conversions.h", | 123 "$target_gen_dir/public/domains/type_conversions.h", |
| 124 "$target_gen_dir/public/domains/types.cc", | 124 "$target_gen_dir/public/domains/types.cc", |
| 125 "$target_gen_dir/public/domains/types.h", | 125 "$target_gen_dir/public/domains/types.h", |
| 126 "$target_gen_dir/public/domains/worker.cc", | |
| 127 "$target_gen_dir/public/domains/worker.h", | |
| 128 ] | 126 ] |
| 129 | 127 |
| 130 action("gen_devtools_client_api") { | 128 action("gen_devtools_client_api") { |
| 131 script = "//headless/lib/browser/client_api_generator.py" | 129 script = "//headless/lib/browser/client_api_generator.py" |
| 132 deps = [ | 130 deps = [ |
| 133 "//third_party/WebKit/Source/core/inspector:protocol_version", | 131 "//third_party/WebKit/Source/core/inspector:protocol_version", |
| 134 ] | 132 ] |
| 135 inputs = [ | 133 inputs = [ |
| 136 "$root_gen_dir/blink/core/inspector/protocol.json", | 134 "$root_gen_dir/blink/core/inspector/protocol.json", |
| 137 ] | 135 ] |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 sources = [ | 350 sources = [ |
| 353 "app/headless_shell.cc", | 351 "app/headless_shell.cc", |
| 354 "app/headless_shell_switches.cc", | 352 "app/headless_shell_switches.cc", |
| 355 "app/headless_shell_switches.h", | 353 "app/headless_shell_switches.h", |
| 356 ] | 354 ] |
| 357 | 355 |
| 358 deps = [ | 356 deps = [ |
| 359 "//headless:headless_lib", | 357 "//headless:headless_lib", |
| 360 ] | 358 ] |
| 361 } | 359 } |
| OLD | NEW |