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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("tab") { | 7 source_set("tab") { |
8 sources = [ | 8 sources = [ |
9 "frame.cc", | 9 "frame.cc", |
10 "frame.h", | 10 "frame.h", |
(...skipping 19 matching lines...) Expand all Loading... |
30 ] | 30 ] |
31 } | 31 } |
32 | 32 |
33 source_set("test_support") { | 33 source_set("test_support") { |
34 sources = [ | 34 sources = [ |
35 "test_frame_tree_delegate.cc", | 35 "test_frame_tree_delegate.cc", |
36 "test_frame_tree_delegate.h", | 36 "test_frame_tree_delegate.h", |
37 ] | 37 ] |
38 deps = [ | 38 deps = [ |
39 ":tab", | 39 ":tab", |
| 40 "//base", |
40 ] | 41 ] |
41 } | 42 } |
42 | 43 |
43 mojo_native_application("mandoline_frame_apptests") { | 44 mojo_native_application("mandoline_frame_apptests") { |
44 testonly = true | 45 testonly = true |
45 | 46 |
46 sources = [ | 47 sources = [ |
47 "frame_apptest.cc", | 48 "frame_apptest.cc", |
48 ] | 49 ] |
49 | 50 |
50 deps = [ | 51 deps = [ |
51 ":tab", | 52 ":tab", |
52 ":test_support", | 53 ":test_support", |
53 "//base", | 54 "//base", |
54 "//base/test:test_config", | 55 "//base/test:test_config", |
55 "//components/view_manager/public/cpp", | 56 "//components/view_manager/public/cpp", |
56 "//components/view_manager/public/interfaces", | 57 "//components/view_manager/public/interfaces", |
57 "//mandoline/tab/public/interfaces", | 58 "//mandoline/tab/public/interfaces", |
| 59 "//mojo/application/public/cpp:sources", |
58 "//mojo/application/public/cpp:test_support", | 60 "//mojo/application/public/cpp:test_support", |
59 "//ui/mojo/geometry:interfaces", | 61 "//ui/mojo/geometry:interfaces", |
60 "//ui/mojo/geometry:util", | 62 "//ui/mojo/geometry:util", |
61 ] | 63 ] |
62 | 64 |
63 data_deps = [ "//components/view_manager" ] | 65 data_deps = [ "//components/view_manager" ] |
64 } | 66 } |
OLD | NEW |