| 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 26 matching lines...) Expand all Loading... |
| 37 # Build //mash/runner to generate the runner executable. | 37 # Build //mash/runner to generate the runner executable. |
| 38 catalog("catalog") { | 38 catalog("catalog") { |
| 39 testonly = true | 39 testonly = true |
| 40 | 40 |
| 41 standalone_services = [ | 41 standalone_services = [ |
| 42 "//components/leveldb:manifest", | 42 "//components/leveldb:manifest", |
| 43 "//mash/catalog_viewer:manifest", | 43 "//mash/catalog_viewer:manifest", |
| 44 "//mash/quick_launch:manifest", | 44 "//mash/quick_launch:manifest", |
| 45 "//mash/session:manifest", | 45 "//mash/session:manifest", |
| 46 "//mash/task_viewer:manifest", | 46 "//mash/task_viewer:manifest", |
| 47 "//services/tracing:manifest", | |
| 48 "//services/ui:manifest", | 47 "//services/ui:manifest", |
| 49 "//services/ui/demo:manifest", | 48 "//services/ui/demo:manifest", |
| 50 "//services/ui/ime/test_ime_driver:manifest", | 49 "//services/ui/ime/test_ime_driver:manifest", |
| 51 | 50 |
| 52 # TODO(rockot): It seems like a layering violation to have these service | 51 # TODO(rockot): It seems like a layering violation to have these service |
| 53 # names referenced here, but it's the most convenient thing to do for now, | 52 # names referenced here, but it's the most convenient thing to do for now, |
| 54 # and this is only for developers. | 53 # and this is only for developers. |
| 55 # | 54 # |
| 56 # Note that there are no build-time dependencies on the actual Chrome | 55 # Note that there are no build-time dependencies on the actual Chrome |
| 57 # binary implied by mash:all or other targets here. This only ensures that | 56 # binary implied by mash:all or other targets here. This only ensures that |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 testonly = true | 152 testonly = true |
| 154 sources = get_target_outputs(":mash_unittests_catalog") | 153 sources = get_target_outputs(":mash_unittests_catalog") |
| 155 outputs = [ | 154 outputs = [ |
| 156 "${root_out_dir}/mash_unittests_catalog.json", | 155 "${root_out_dir}/mash_unittests_catalog.json", |
| 157 ] | 156 ] |
| 158 deps = [ | 157 deps = [ |
| 159 ":mash_unittests_catalog", | 158 ":mash_unittests_catalog", |
| 160 ] | 159 ] |
| 161 } | 160 } |
| 162 } | 161 } |
| OLD | NEW |