OLD | NEW |
---|---|
(Empty) | |
1 # Use of this source code is governed by a BSD-style license that can be | |
2 # found in the LICENSE file. | |
3 | |
4 import("//build/config/features.gni") | |
5 | |
6 executable("headless_shell") { | |
7 testonly = true | |
8 | |
9 sources = [ | |
10 "headless_browser_main.h", | |
11 "headless_browser_main.cc", | |
12 "headless_shell_main_delegate.cc", | |
13 "headless_shell_main_delegate.h", | |
14 "headless_shell_main.cc", | |
15 ] | |
16 | |
17 deps = [ | |
18 "//content/shell:content_shell_lib" | |
19 ] | |
20 } | |
OLD | NEW |