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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 ] | 123 ] |
124 deps = [ | 124 deps = [ |
125 ":tab_socket__generator", | 125 ":tab_socket__generator", |
126 ] | 126 ] |
127 } | 127 } |
128 | 128 |
129 devtools_domains = [ | 129 devtools_domains = [ |
130 "accessibility", | 130 "accessibility", |
131 "animation", | 131 "animation", |
132 "application_cache", | 132 "application_cache", |
133 "browser", | |
Sami
2017/05/22 16:30:57
Hmm, I wonder how we missed this? :) It may have b
jzfeng
2017/05/24 05:05:39
Yes, this is a new domain added for the window man
| |
133 "cache_storage", | 134 "cache_storage", |
134 "console", | 135 "console", |
135 "css", | 136 "css", |
136 "database", | 137 "database", |
137 "debugger", | 138 "debugger", |
138 "device_orientation", | 139 "device_orientation", |
139 "dom", | 140 "dom", |
140 "dom_debugger", | 141 "dom_debugger", |
141 "dom_storage", | 142 "dom_storage", |
142 "emulation", | 143 "emulation", |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
698 | 699 |
699 executable("headless_example") { | 700 executable("headless_example") { |
700 sources = [ | 701 sources = [ |
701 "app/headless_example.cc", | 702 "app/headless_example.cc", |
702 ] | 703 ] |
703 | 704 |
704 deps = [ | 705 deps = [ |
705 ":headless_shell_lib", | 706 ":headless_shell_lib", |
706 ] | 707 ] |
707 } | 708 } |
OLD | NEW |