| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 # Target that builders build. | 10 # Target that builders build. |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 testonly = true | 91 testonly = true |
| 92 sources = get_target_outputs(":catalog") | 92 sources = get_target_outputs(":catalog") |
| 93 outputs = [ | 93 outputs = [ |
| 94 "$root_out_dir/mash_catalog.json", | 94 "$root_out_dir/mash_catalog.json", |
| 95 ] | 95 ] |
| 96 deps = [ | 96 deps = [ |
| 97 ":catalog", | 97 ":catalog", |
| 98 ] | 98 ] |
| 99 } | 99 } |
| 100 | 100 |
| 101 group("browser") { | |
| 102 testonly = true | |
| 103 | |
| 104 deps = [ | |
| 105 ":all", | |
| 106 "//mash/browser", | |
| 107 "//mash/webtest", | |
| 108 ] | |
| 109 } | |
| 110 | |
| 111 if (is_chromeos) { | 101 if (is_chromeos) { |
| 112 # TODO(jamescook): Move these tests into //ash/mus. | 102 # TODO(jamescook): Move these tests into //ash/mus. |
| 113 test("mash_unittests") { | 103 test("mash_unittests") { |
| 114 sources = [ | 104 sources = [ |
| 115 "test/mash_test_suite.cc", | 105 "test/mash_test_suite.cc", |
| 116 "test/mash_test_suite.h", | 106 "test/mash_test_suite.h", |
| 117 "test/mash_unittests.cc", | 107 "test/mash_unittests.cc", |
| 118 ] | 108 ] |
| 119 deps = [ | 109 deps = [ |
| 120 "//ash:common_unittests", | 110 "//ash:common_unittests", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 testonly = true | 146 testonly = true |
| 157 sources = get_target_outputs(":mash_unittests_catalog") | 147 sources = get_target_outputs(":mash_unittests_catalog") |
| 158 outputs = [ | 148 outputs = [ |
| 159 "${root_out_dir}/mash_unittests_catalog.json", | 149 "${root_out_dir}/mash_unittests_catalog.json", |
| 160 ] | 150 ] |
| 161 deps = [ | 151 deps = [ |
| 162 ":mash_unittests_catalog", | 152 ":mash_unittests_catalog", |
| 163 ] | 153 ] |
| 164 } | 154 } |
| 165 } | 155 } |
| OLD | NEW |