| 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 28 matching lines...) Expand all Loading... |
| 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", | 47 "//services/tracing:manifest", |
| 48 "//services/ui:manifest", | 48 "//services/ui:manifest", |
| 49 "//services/ui/demo:manifest", | 49 "//services/ui/demo:manifest_internal", |
| 50 "//services/ui/ime/test_ime_driver:manifest", | 50 "//services/ui/ime/test_ime_driver:manifest", |
| 51 | 51 |
| 52 # TODO(rockot): It seems like a layering violation to have these service | 52 # 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, | 53 # names referenced here, but it's the most convenient thing to do for now, |
| 54 # and this is only for developers. | 54 # and this is only for developers. |
| 55 # | 55 # |
| 56 # Note that there are no build-time dependencies on the actual Chrome | 56 # 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 | 57 # binary implied by mash:all or other targets here. This only ensures that |
| 58 # if you have such a binary built, the runner will be able to locate it. | 58 # if you have such a binary built, the runner will be able to locate it. |
| 59 "//chrome/app:chrome_content_browser_manifest", | 59 "//chrome/app:chrome_content_browser_manifest", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 testonly = true | 151 testonly = true |
| 152 sources = get_target_outputs(":mash_unittests_catalog") | 152 sources = get_target_outputs(":mash_unittests_catalog") |
| 153 outputs = [ | 153 outputs = [ |
| 154 "${root_out_dir}/mash_unittests_catalog.json", | 154 "${root_out_dir}/mash_unittests_catalog.json", |
| 155 ] | 155 ] |
| 156 deps = [ | 156 deps = [ |
| 157 ":mash_unittests_catalog", | 157 ":mash_unittests_catalog", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| 160 } | 160 } |
| OLD | NEW |