Chromium Code Reviews| 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 group("headless") { | |
| 5 testonly = true | |
| 6 | |
| 7 deps = [ | |
| 8 "//headless:headless_lib", | |
| 9 ] | |
| 10 } | |
| 11 | |
| 12 static_library("headless_lib") { | |
| 13 testonly = true | |
|
Sami
2015/11/19 14:08:34
The headless shell is testonly but the library its
altimin
2015/11/19 14:52:54
Done.
| |
| 14 | |
| 15 sources = [ | |
| 16 "public/headless_browser.h", | |
| 17 "public/web_contents.h", | |
| 18 "public/web_document.h", | |
| 19 "public/web_element.h", | |
| 20 "public/web_frame.h", | |
| 21 "public/web_node.h", | |
| 22 ] | |
| 23 | |
| 24 deps = [ | |
| 25 "//base", | |
| 26 "//third_party/WebKit/public:blink", | |
| 27 ] | |
| 28 } | |
| OLD | NEW |