| 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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 data_deps = [ | 123 data_deps = [ |
| 124 "//ash/touch_hud/mus:touch_hud", | 124 "//ash/touch_hud/mus:touch_hud", |
| 125 ] | 125 ] |
| 126 | 126 |
| 127 if (is_chromeos) { | 127 if (is_chromeos) { |
| 128 sources += [ | 128 sources += [ |
| 129 "network_connect_delegate_mus.cc", | 129 "network_connect_delegate_mus.cc", |
| 130 "network_connect_delegate_mus.h", | 130 "network_connect_delegate_mus.h", |
| 131 "system_tray_delegate_mus.cc", | 131 "system_tray_delegate_mus.cc", |
| 132 "system_tray_delegate_mus.h", | 132 "system_tray_delegate_mus.h", |
| 133 "vpn_delegate_mus.cc", | |
| 134 "vpn_delegate_mus.h", | |
| 135 ] | 133 ] |
| 136 | 134 |
| 137 deps += [ | 135 deps += [ |
| 138 "//chromeos", | 136 "//chromeos", |
| 139 "//chromeos:power_manager_proto", | 137 "//chromeos:power_manager_proto", |
| 140 "//device/bluetooth", | 138 "//device/bluetooth", |
| 141 "//ui/chromeos", | 139 "//ui/chromeos", |
| 142 ] | 140 ] |
| 143 } | 141 } |
| 144 } | 142 } |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "//ui/views/mus", | 278 "//ui/views/mus", |
| 281 ] | 279 ] |
| 282 | 280 |
| 283 data_deps = [ | 281 data_deps = [ |
| 284 ":mus", | 282 ":mus", |
| 285 "//mash/quick_launch", | 283 "//mash/quick_launch", |
| 286 ] | 284 ] |
| 287 | 285 |
| 288 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 286 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 289 } | 287 } |
| OLD | NEW |