| 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 5000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5011 if (is_chromeos) { | 5011 if (is_chromeos) { |
| 5012 service_manifest("mash_browser_tests_manifest") { | 5012 service_manifest("mash_browser_tests_manifest") { |
| 5013 type = "exe" | 5013 type = "exe" |
| 5014 name = "mash_browser_tests" | 5014 name = "mash_browser_tests" |
| 5015 | 5015 |
| 5016 source = "base/mash_browser_tests_manifest.json" | 5016 source = "base/mash_browser_tests_manifest.json" |
| 5017 deps = [ | 5017 deps = [ |
| 5018 "//ash/autoclick/mus:manifest", | 5018 "//ash/autoclick/mus:manifest", |
| 5019 "//ash/mus:manifest", | 5019 "//ash/mus:manifest", |
| 5020 "//ash/touch_hud/mus:manifest", | 5020 "//ash/touch_hud/mus:manifest", |
| 5021 "//mash/app_driver:manifest", | |
| 5022 "//mash/quick_launch:manifest", | 5021 "//mash/quick_launch:manifest", |
| 5023 "//mash/session:manifest", | 5022 "//mash/session:manifest", |
| 5024 "//mash/task_viewer:manifest", | 5023 "//mash/task_viewer:manifest", |
| 5025 "//services/ui:manifest", | 5024 "//services/ui:manifest", |
| 5026 "//services/ui/ime/test_ime_driver:manifest", | 5025 "//services/ui/ime/test_ime_driver:manifest", |
| 5027 ] | 5026 ] |
| 5028 packaged_services = [ | 5027 packaged_services = [ |
| 5029 "accessibility_autoclick", | 5028 "accessibility_autoclick", |
| 5030 "app_driver", | |
| 5031 "ash", | 5029 "ash", |
| 5032 "mash_session", | 5030 "mash_session", |
| 5033 "quick_launch", | 5031 "quick_launch", |
| 5034 "task_viewer", | 5032 "task_viewer", |
| 5035 "test_ime_driver", | 5033 "test_ime_driver", |
| 5036 "touch_hud", | 5034 "touch_hud", |
| 5037 "ui", | 5035 "ui", |
| 5038 ] | 5036 ] |
| 5039 | 5037 |
| 5040 if (is_linux && !is_android) { | 5038 if (is_linux && !is_android) { |
| 5041 deps += [ "//components/font_service:manifest" ] | 5039 deps += [ "//components/font_service:manifest" ] |
| 5042 packaged_services += [ "font_service" ] | 5040 packaged_services += [ "font_service" ] |
| 5043 } | 5041 } |
| 5044 } | 5042 } |
| 5045 } | 5043 } |
| OLD | NEW |