| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 source = "lib/resources/headless_lib_resources.grd" | 119 source = "lib/resources/headless_lib_resources.grd" |
| 120 outputs = [ | 120 outputs = [ |
| 121 "grit/headless_lib_resources.h", | 121 "grit/headless_lib_resources.h", |
| 122 "$root_gen_dir/headless/headless_lib_resources.pak", | 122 "$root_gen_dir/headless/headless_lib_resources.pak", |
| 123 ] | 123 ] |
| 124 grit_flags = [ | 124 grit_flags = [ |
| 125 "-E", | 125 "-E", |
| 126 "mojom_root=" + rebase_path(root_gen_dir, root_build_dir), | 126 "mojom_root=" + rebase_path(root_gen_dir, root_build_dir), |
| 127 ] | 127 ] |
| 128 deps = [ | 128 deps = [ |
| 129 ":headless_render_frame_controller__generator", | 129 ":headless_render_frame_controller_js", |
| 130 ":tab_socket__generator", | 130 ":tab_socket_js", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| 133 | 133 |
| 134 devtools_domains = [ | 134 devtools_domains = [ |
| 135 "accessibility", | 135 "accessibility", |
| 136 "animation", | 136 "animation", |
| 137 "application_cache", | 137 "application_cache", |
| 138 "browser", | 138 "browser", |
| 139 "cache_storage", | 139 "cache_storage", |
| 140 "console", | 140 "console", |
| (...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 executable("headless_example") { | 790 executable("headless_example") { |
| 791 sources = [ | 791 sources = [ |
| 792 "app/headless_example.cc", | 792 "app/headless_example.cc", |
| 793 ] | 793 ] |
| 794 | 794 |
| 795 deps = [ | 795 deps = [ |
| 796 ":headless_shell_lib", | 796 ":headless_shell_lib", |
| 797 "//build/config:exe_and_shlib_deps", | 797 "//build/config:exe_and_shlib_deps", |
| 798 ] | 798 ] |
| 799 } | 799 } |
| OLD | NEW |