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