| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 4937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4948 } | 4948 } |
| 4949 } | 4949 } |
| 4950 | 4950 |
| 4951 if (is_chromeos) { | 4951 if (is_chromeos) { |
| 4952 service_manifest("mash_browser_tests_manifest") { | 4952 service_manifest("mash_browser_tests_manifest") { |
| 4953 type = "exe" | 4953 type = "exe" |
| 4954 name = "mash_browser_tests" | 4954 name = "mash_browser_tests" |
| 4955 | 4955 |
| 4956 source = "base/mash_browser_tests_manifest.json" | 4956 source = "base/mash_browser_tests_manifest.json" |
| 4957 deps = [ | 4957 deps = [ |
| 4958 "//ash/autoclick/mus:manifest", |
| 4958 "//ash/mus:manifest", | 4959 "//ash/mus:manifest", |
| 4959 "//ash/touch_hud/mus:manifest", | 4960 "//ash/touch_hud/mus:manifest", |
| 4960 "//mash/app_driver:manifest", | 4961 "//mash/app_driver:manifest", |
| 4961 "//mash/quick_launch:manifest", | 4962 "//mash/quick_launch:manifest", |
| 4962 "//mash/session:manifest", | 4963 "//mash/session:manifest", |
| 4963 "//mash/task_viewer:manifest", | 4964 "//mash/task_viewer:manifest", |
| 4964 "//services/ui:manifest", | 4965 "//services/ui:manifest", |
| 4965 "//services/ui/ime/test_ime_driver:manifest", | 4966 "//services/ui/ime/test_ime_driver:manifest", |
| 4966 ] | 4967 ] |
| 4967 packaged_services = [ | 4968 packaged_services = [ |
| 4969 "accessibility_autoclick", |
| 4968 "app_driver", | 4970 "app_driver", |
| 4969 "ash", | 4971 "ash", |
| 4970 "mash_session", | 4972 "mash_session", |
| 4971 "quick_launch", | 4973 "quick_launch", |
| 4972 "task_viewer", | 4974 "task_viewer", |
| 4973 "test_ime_driver", | 4975 "test_ime_driver", |
| 4974 "touch_hud", | 4976 "touch_hud", |
| 4975 "ui", | 4977 "ui", |
| 4976 ] | 4978 ] |
| 4977 | 4979 |
| 4978 if (is_linux && !is_android) { | 4980 if (is_linux && !is_android) { |
| 4979 deps += [ "//components/font_service:manifest" ] | 4981 deps += [ "//components/font_service:manifest" ] |
| 4980 packaged_services += [ "font_service" ] | 4982 packaged_services += [ "font_service" ] |
| 4981 } | 4983 } |
| 4982 } | 4984 } |
| 4983 } | 4985 } |
| OLD | NEW |