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