Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Use of this source code is governed by a BSD-style license that can be | |
|
Sami
2015/12/01 14:03:57
Missing the first line here?
altimin
2015/12/01 15:17:28
Done.
| |
| 2 # found in the LICENSE file. | |
| 3 | |
| 4 group("headless") { | |
| 5 deps = [ | |
| 6 "//headless:headless_lib", | |
| 7 ] | |
| 8 } | |
| 9 | |
| 10 static_library("headless_lib") { | |
| 11 sources = [ | |
| 12 "public/headless_browser.cc", | |
| 13 "public/headless_browser.h", | |
| 14 "public/headless_export.h", | |
| 15 "public/network.h", | |
| 16 "public/web_contents.h", | |
| 17 "public/web_frame.h", | |
| 18 ] | |
| 19 | |
| 20 deps = [ | |
| 21 "//base", | |
| 22 ] | |
| 23 } | |
| OLD | NEW |