| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//services/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 9 |
| 10 assert(enable_package_mash_services) | 10 assert(enable_package_mash_services) |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "//services/catalog/public/interfaces", | 33 "//services/catalog/public/interfaces", |
| 34 "//services/service_manager", | 34 "//services/service_manager", |
| 35 "//services/service_manager/background:lib", | 35 "//services/service_manager/background:lib", |
| 36 "//services/service_manager/public/cpp", | 36 "//services/service_manager/public/cpp", |
| 37 "//services/service_manager/public/cpp/standalone_service", | 37 "//services/service_manager/public/cpp/standalone_service", |
| 38 "//services/service_manager/public/interfaces", | 38 "//services/service_manager/public/interfaces", |
| 39 "//services/service_manager/runner:init", | 39 "//services/service_manager/runner:init", |
| 40 "//services/service_manager/runner/common", | 40 "//services/service_manager/runner/common", |
| 41 "//services/service_manager/runner/host:lib", | 41 "//services/service_manager/runner/host:lib", |
| 42 "//services/service_manager/standalone", | 42 "//services/service_manager/standalone", |
| 43 "//services/tracing:lib", | |
| 44 "//services/tracing/public/interfaces:constants", | |
| 45 "//services/ui:lib", | 43 "//services/ui:lib", |
| 46 "//services/ui/ime/test_ime_driver:lib", | 44 "//services/ui/ime/test_ime_driver:lib", |
| 47 "//services/ui/public/interfaces:constants", | 45 "//services/ui/public/interfaces:constants", |
| 48 "//url", | 46 "//url", |
| 49 ] | 47 ] |
| 50 | 48 |
| 51 if (is_chromeos) { | 49 if (is_chromeos) { |
| 52 deps += [ | 50 deps += [ |
| 53 ":chrome_mus_catalog", | 51 ":chrome_mus_catalog", |
| 54 "//ash/autoclick/mus:lib", | 52 "//ash/autoclick/mus:lib", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 68 } | 66 } |
| 69 | 67 |
| 70 catalog("catalog") { | 68 catalog("catalog") { |
| 71 embedded_services = [ | 69 embedded_services = [ |
| 72 "//ash/autoclick/mus:manifest", | 70 "//ash/autoclick/mus:manifest", |
| 73 "//ash/touch_hud/mus:manifest", | 71 "//ash/touch_hud/mus:manifest", |
| 74 "//mash/catalog_viewer:manifest", | 72 "//mash/catalog_viewer:manifest", |
| 75 "//mash/quick_launch:manifest", | 73 "//mash/quick_launch:manifest", |
| 76 "//mash/session:manifest", | 74 "//mash/session:manifest", |
| 77 "//mash/task_viewer:manifest", | 75 "//mash/task_viewer:manifest", |
| 78 "//services/tracing:manifest", | |
| 79 "//services/ui:manifest", | 76 "//services/ui:manifest", |
| 80 "//services/ui/ime/test_ime_driver:manifest", | 77 "//services/ui/ime/test_ime_driver:manifest", |
| 81 ] | 78 ] |
| 82 catalog_deps = [ "//chrome/app:catalog_for_mash" ] | 79 catalog_deps = [ "//chrome/app:catalog_for_mash" ] |
| 83 standalone_services = [ | 80 standalone_services = [ |
| 84 "//mash/example/views_examples:manifest", | 81 "//mash/example/views_examples:manifest", |
| 85 "//mash/simple_wm:manifest", | 82 "//mash/simple_wm:manifest", |
| 86 ] | 83 ] |
| 87 | 84 |
| 88 if (is_chromeos) { | 85 if (is_chromeos) { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 108 # TODO(sky): verify if we need this. | 105 # TODO(sky): verify if we need this. |
| 109 "//services/ui/ime/test_ime_driver:manifest", | 106 "//services/ui/ime/test_ime_driver:manifest", |
| 110 ] | 107 ] |
| 111 } | 108 } |
| 112 | 109 |
| 113 catalog_cpp_source("chrome_mus_catalog") { | 110 catalog_cpp_source("chrome_mus_catalog") { |
| 114 catalog = ":catalog_mus" | 111 catalog = ":catalog_mus" |
| 115 generated_function_name = "CreateChromeMusCatalog" | 112 generated_function_name = "CreateChromeMusCatalog" |
| 116 } | 113 } |
| 117 } | 114 } |
| OLD | NEW |