| 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", |
| 134 ] | 136 ] |
| 135 | 137 |
| 136 deps += [ | 138 deps += [ |
| 137 "//chromeos", | 139 "//chromeos", |
| 138 "//chromeos:power_manager_proto", | 140 "//chromeos:power_manager_proto", |
| 139 "//device/bluetooth", | 141 "//device/bluetooth", |
| 140 "//ui/chromeos", | 142 "//ui/chromeos", |
| 141 ] | 143 ] |
| 142 } | 144 } |
| 143 } | 145 } |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 "//ui/views/mus", | 282 "//ui/views/mus", |
| 281 ] | 283 ] |
| 282 | 284 |
| 283 data_deps = [ | 285 data_deps = [ |
| 284 ":mus", | 286 ":mus", |
| 285 "//mash/quick_launch", | 287 "//mash/quick_launch", |
| 286 ] | 288 ] |
| 287 | 289 |
| 288 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 290 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 289 } | 291 } |
| OLD | NEW |