| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 "//base", | 82 "//base", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 mojo_native_application("apptests") { | 86 mojo_native_application("apptests") { |
| 87 output_name = "web_view_apptests" | 87 output_name = "web_view_apptests" |
| 88 testonly = true | 88 testonly = true |
| 89 | 89 |
| 90 sources = [ | 90 sources = [ |
| 91 "frame_apptest.cc", | 91 "frame_apptest.cc", |
| 92 "web_view_apptest.cc", |
| 92 ] | 93 ] |
| 93 | 94 |
| 94 deps = [ | 95 deps = [ |
| 95 ":lib", | 96 ":lib", |
| 96 ":test_support", | 97 ":test_support", |
| 97 "//base", | 98 "//base", |
| 98 "//base/test:test_config", | 99 "//base/test:test_config", |
| 99 "//components/view_manager/public/cpp", | 100 "//components/view_manager/public/cpp", |
| 101 "//components/view_manager/public/cpp/tests:test_support", |
| 100 "//components/view_manager/public/interfaces", | 102 "//components/view_manager/public/interfaces", |
| 103 "//components/web_view/public/cpp", |
| 101 "//components/web_view/public/interfaces", | 104 "//components/web_view/public/interfaces", |
| 102 "//mojo/application/public/cpp:sources", | 105 "//mojo/application/public/cpp:sources", |
| 103 "//mojo/application/public/cpp:test_support", | 106 "//mojo/application/public/cpp:test_support", |
| 107 "//mojo/util:filename_util", |
| 104 "//ui/mojo/geometry:interfaces", | 108 "//ui/mojo/geometry:interfaces", |
| 105 "//ui/mojo/geometry:util", | 109 "//ui/mojo/geometry:util", |
| 110 "//url:url", |
| 106 ] | 111 ] |
| 107 | 112 |
| 108 data_deps = [ "//components/view_manager" ] | 113 data_deps = [ "//components/view_manager" ] |
| 109 } | 114 } |
| OLD | NEW |