| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 "system_tray_delegate_mus.cc", | 134 "system_tray_delegate_mus.cc", |
| 135 "system_tray_delegate_mus.h", | 135 "system_tray_delegate_mus.h", |
| 136 "vpn_delegate_mus.cc", | 136 "vpn_delegate_mus.cc", |
| 137 "vpn_delegate_mus.h", | 137 "vpn_delegate_mus.h", |
| 138 ] | 138 ] |
| 139 | 139 |
| 140 deps += [ | 140 deps += [ |
| 141 "//chromeos", | 141 "//chromeos", |
| 142 "//chromeos:power_manager_proto", | 142 "//chromeos:power_manager_proto", |
| 143 "//device/bluetooth", | 143 "//device/bluetooth", |
| 144 "//ui/chromeos", |
| 144 ] | 145 ] |
| 145 } | 146 } |
| 146 } | 147 } |
| 147 | 148 |
| 148 service("mus") { | 149 service("mus") { |
| 149 output_name = "ash" | 150 output_name = "ash" |
| 150 | 151 |
| 151 sources = [ | 152 sources = [ |
| 152 "main.cc", | 153 "main.cc", |
| 153 ] | 154 ] |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "//mash/quick_launch", | 293 "//mash/quick_launch", |
| 293 ] | 294 ] |
| 294 | 295 |
| 295 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 296 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 296 | 297 |
| 297 if (is_chromeos) { | 298 if (is_chromeos) { |
| 298 sources += | 299 sources += |
| 299 [ "../common/system/chromeos/brightness/tray_brightness_unittest.cc" ] | 300 [ "../common/system/chromeos/brightness/tray_brightness_unittest.cc" ] |
| 300 } | 301 } |
| 301 } | 302 } |
| OLD | NEW |