| 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", | |
| 41 ] | 40 ] |
| 42 } | 41 } |
| 43 | 42 |
| 44 mojo_native_application("mandoline_frame_apptests") { | 43 mojo_native_application("mandoline_frame_apptests") { |
| 45 testonly = true | 44 testonly = true |
| 46 | 45 |
| 47 sources = [ | 46 sources = [ |
| 48 "frame_apptest.cc", | 47 "frame_apptest.cc", |
| 49 ] | 48 ] |
| 50 | 49 |
| 51 deps = [ | 50 deps = [ |
| 52 ":tab", | 51 ":tab", |
| 53 ":test_support", | 52 ":test_support", |
| 54 "//base", | 53 "//base", |
| 55 "//base/test:test_config", | 54 "//base/test:test_config", |
| 56 "//components/view_manager/public/cpp", | 55 "//components/view_manager/public/cpp", |
| 57 "//components/view_manager/public/interfaces", | 56 "//components/view_manager/public/interfaces", |
| 58 "//mandoline/tab/public/interfaces", | 57 "//mandoline/tab/public/interfaces", |
| 59 "//mojo/application/public/cpp:sources", | |
| 60 "//mojo/application/public/cpp:test_support", | 58 "//mojo/application/public/cpp:test_support", |
| 61 "//ui/mojo/geometry:interfaces", | 59 "//ui/mojo/geometry:interfaces", |
| 62 "//ui/mojo/geometry:util", | 60 "//ui/mojo/geometry:util", |
| 63 ] | 61 ] |
| 64 | 62 |
| 65 data_deps = [ "//components/view_manager" ] | 63 data_deps = [ "//components/view_manager" ] |
| 66 } | 64 } |
| OLD | NEW |