| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 "common/system/chromeos/network/network_state_list_detailed_view.cc", | 247 "common/system/chromeos/network/network_state_list_detailed_view.cc", |
| 248 "common/system/chromeos/network/network_state_list_detailed_view.h", | 248 "common/system/chromeos/network/network_state_list_detailed_view.h", |
| 249 "common/system/chromeos/network/tray_network.cc", | 249 "common/system/chromeos/network/tray_network.cc", |
| 250 "common/system/chromeos/network/tray_network.h", | 250 "common/system/chromeos/network/tray_network.h", |
| 251 "common/system/chromeos/network/tray_network_state_observer.cc", | 251 "common/system/chromeos/network/tray_network_state_observer.cc", |
| 252 "common/system/chromeos/network/tray_network_state_observer.h", | 252 "common/system/chromeos/network/tray_network_state_observer.h", |
| 253 "common/system/chromeos/network/tray_sms.cc", | 253 "common/system/chromeos/network/tray_sms.cc", |
| 254 "common/system/chromeos/network/tray_sms.h", | 254 "common/system/chromeos/network/tray_sms.h", |
| 255 "common/system/chromeos/network/tray_vpn.cc", | 255 "common/system/chromeos/network/tray_vpn.cc", |
| 256 "common/system/chromeos/network/tray_vpn.h", | 256 "common/system/chromeos/network/tray_vpn.h", |
| 257 "common/system/chromeos/network/vpn_delegate.cc", | 257 "common/system/chromeos/network/vpn_list.cc", |
| 258 "common/system/chromeos/network/vpn_delegate.h", | 258 "common/system/chromeos/network/vpn_list.h", |
| 259 "common/system/chromeos/network/vpn_list_view.cc", | 259 "common/system/chromeos/network/vpn_list_view.cc", |
| 260 "common/system/chromeos/network/vpn_list_view.h", | 260 "common/system/chromeos/network/vpn_list_view.h", |
| 261 "common/system/chromeos/palette/common_palette_tool.cc", | 261 "common/system/chromeos/palette/common_palette_tool.cc", |
| 262 "common/system/chromeos/palette/common_palette_tool.h", | 262 "common/system/chromeos/palette/common_palette_tool.h", |
| 263 "common/system/chromeos/palette/palette_ids.cc", | 263 "common/system/chromeos/palette/palette_ids.cc", |
| 264 "common/system/chromeos/palette/palette_ids.h", | 264 "common/system/chromeos/palette/palette_ids.h", |
| 265 "common/system/chromeos/palette/palette_tool.cc", | 265 "common/system/chromeos/palette/palette_tool.cc", |
| 266 "common/system/chromeos/palette/palette_tool.h", | 266 "common/system/chromeos/palette/palette_tool.h", |
| 267 "common/system/chromeos/palette/palette_tool_manager.cc", | 267 "common/system/chromeos/palette/palette_tool_manager.cc", |
| 268 "common/system/chromeos/palette/palette_tool_manager.h", | 268 "common/system/chromeos/palette/palette_tool_manager.h", |
| (...skipping 1240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1509 if (is_win) { | 1509 if (is_win) { |
| 1510 configs -= [ "//build/config/win:console" ] | 1510 configs -= [ "//build/config/win:console" ] |
| 1511 configs += [ "//build/config/win:windowed" ] | 1511 configs += [ "//build/config/win:windowed" ] |
| 1512 deps += [ "//sandbox" ] | 1512 deps += [ "//sandbox" ] |
| 1513 } | 1513 } |
| 1514 | 1514 |
| 1515 if (is_chromeos) { | 1515 if (is_chromeos) { |
| 1516 deps += [ "//device/bluetooth" ] | 1516 deps += [ "//device/bluetooth" ] |
| 1517 } | 1517 } |
| 1518 } | 1518 } |
| OLD | NEW |