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 source_set("browser") { | 5 source_set("browser") { |
6 output_name = "guest_view_browser" | 6 output_name = "guest_view_browser" |
7 sources = [ | 7 sources = [ |
8 "//components/guest_view/browser/guest_view.h", | 8 "//components/guest_view/browser/guest_view.h", |
9 "//components/guest_view/browser/guest_view_base.cc", | 9 "//components/guest_view/browser/guest_view_base.cc", |
10 "//components/guest_view/browser/guest_view_base.h", | 10 "//components/guest_view/browser/guest_view_base.h", |
(...skipping 18 matching lines...) Expand all Loading... |
29 ] | 29 ] |
30 } | 30 } |
31 | 31 |
32 source_set("test_support") { | 32 source_set("test_support") { |
33 testonly = true | 33 testonly = true |
34 sources = [ | 34 sources = [ |
35 "//components/guest_view/browser/test_guest_view_manager.cc", | 35 "//components/guest_view/browser/test_guest_view_manager.cc", |
36 "//components/guest_view/browser/test_guest_view_manager.h", | 36 "//components/guest_view/browser/test_guest_view_manager.h", |
37 ] | 37 ] |
38 | 38 |
39 deps = [ | 39 public_deps = [ |
40 ":browser", | 40 ":browser", |
41 "//content/test:test_support", | 41 "//content/test:test_support", |
42 ] | 42 ] |
43 } | 43 } |
| 44 |
| 45 source_set("unit_tests") { |
| 46 testonly = true |
| 47 sources = [ |
| 48 "guest_view_manager_unittest.cc", |
| 49 ] |
| 50 deps = [ |
| 51 ":test_support", |
| 52 "//testing/gtest", |
| 53 ] |
| 54 } |
OLD | NEW |