| 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("switches") { | 7 source_set("switches") { |
| 8 sources = [ | 8 sources = [ |
| 9 "web_view_switches.cc", | 9 "web_view_switches.cc", |
| 10 "web_view_switches.h", | 10 "web_view_switches.h", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 sources = [ | 75 sources = [ |
| 76 "test_frame_tree_delegate.cc", | 76 "test_frame_tree_delegate.cc", |
| 77 "test_frame_tree_delegate.h", | 77 "test_frame_tree_delegate.h", |
| 78 ] | 78 ] |
| 79 deps = [ | 79 deps = [ |
| 80 ":lib", | 80 ":lib", |
| 81 "//base", | 81 "//base", |
| 82 ] | 82 ] |
| 83 } | 83 } |
| 84 | 84 |
| 85 mojo_native_application("mandoline_frame_apptests") { | 85 mojo_native_application("apptests") { |
| 86 output_name = "web_view_apptests" |
| 86 testonly = true | 87 testonly = true |
| 87 | 88 |
| 88 sources = [ | 89 sources = [ |
| 89 "frame_apptest.cc", | 90 "frame_apptest.cc", |
| 90 ] | 91 ] |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 ":lib", | 94 ":lib", |
| 94 ":test_support", | 95 ":test_support", |
| 95 "//base", | 96 "//base", |
| 96 "//base/test:test_config", | 97 "//base/test:test_config", |
| 97 "//components/view_manager/public/cpp", | 98 "//components/view_manager/public/cpp", |
| 98 "//components/view_manager/public/interfaces", | 99 "//components/view_manager/public/interfaces", |
| 99 "//components/web_view/public/interfaces", | 100 "//components/web_view/public/interfaces", |
| 100 "//mojo/application/public/cpp:sources", | 101 "//mojo/application/public/cpp:sources", |
| 101 "//mojo/application/public/cpp:test_support", | 102 "//mojo/application/public/cpp:test_support", |
| 102 "//ui/mojo/geometry:interfaces", | 103 "//ui/mojo/geometry:interfaces", |
| 103 "//ui/mojo/geometry:util", | 104 "//ui/mojo/geometry:util", |
| 104 ] | 105 ] |
| 105 | 106 |
| 106 data_deps = [ "//components/view_manager" ] | 107 data_deps = [ "//components/view_manager" ] |
| 107 } | 108 } |
| OLD | NEW |