| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "//ui/views/resources", | 111 "//ui/views/resources", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 group("for_mojo_application") { | 115 group("for_mojo_application") { |
| 116 public_deps = [ | 116 public_deps = [ |
| 117 ":mus", | 117 ":mus", |
| 118 ] | 118 ] |
| 119 } | 119 } |
| 120 | 120 |
| 121 source_set("test_support") { | 121 static_library("test_support") { |
| 122 testonly = true | 122 testonly = true |
| 123 | 123 |
| 124 sources = [ | 124 sources = [ |
| 125 "../test/native_widget_factory_mus.cc", | 125 "../test/native_widget_factory_mus.cc", |
| 126 "views_mus_test_suite.cc", | 126 "views_mus_test_suite.cc", |
| 127 "views_mus_test_suite.h", | 127 "views_mus_test_suite.h", |
| 128 ] | 128 ] |
| 129 | 129 |
| 130 deps = [ | 130 deps = [ |
| 131 ":mus", | 131 ":mus", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 type = "exe" | 302 type = "exe" |
| 303 application_name = "views_mus_unittests" | 303 application_name = "views_mus_unittests" |
| 304 source = "unittests_manifest.json" | 304 source = "unittests_manifest.json" |
| 305 } | 305 } |
| 306 | 306 |
| 307 mojo_application_manifest("interactive_ui_tests_manifest") { | 307 mojo_application_manifest("interactive_ui_tests_manifest") { |
| 308 type = "exe" | 308 type = "exe" |
| 309 application_name = "views_mus_interactive_ui_tests" | 309 application_name = "views_mus_interactive_ui_tests" |
| 310 source = "interactive_ui_tests_manifest.json" | 310 source = "interactive_ui_tests_manifest.json" |
| 311 } | 311 } |
| OLD | NEW |