| 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 824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 "//ash/autoclick/common:autoclick", | 835 "//ash/autoclick/common:autoclick", |
| 836 "//ash/public/cpp", | 836 "//ash/public/cpp", |
| 837 "//ash/public/interfaces", | 837 "//ash/public/interfaces", |
| 838 "//ash/touch_hud", | 838 "//ash/touch_hud", |
| 839 "//base", | 839 "//base", |
| 840 "//base:i18n", | 840 "//base:i18n", |
| 841 "//base/third_party/dynamic_annotations", | 841 "//base/third_party/dynamic_annotations", |
| 842 "//cc", | 842 "//cc", |
| 843 "//components/device_event_log", | 843 "//components/device_event_log", |
| 844 "//components/onc", | 844 "//components/onc", |
| 845 "//components/session_manager:base", |
| 845 "//components/signin/core/account_id", | 846 "//components/signin/core/account_id", |
| 846 "//components/user_manager", | 847 "//components/user_manager", |
| 847 "//components/wallpaper", | 848 "//components/wallpaper", |
| 848 "//media", | 849 "//media", |
| 849 "//net", | 850 "//net", |
| 850 "//services/shell/public/cpp", | 851 "//services/shell/public/cpp", |
| 851 "//skia", | 852 "//skia", |
| 852 "//third_party/icu", | 853 "//third_party/icu", |
| 853 "//ui/accessibility", | 854 "//ui/accessibility", |
| 854 "//ui/app_list/presenter", | 855 "//ui/app_list/presenter", |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1475 if (is_win) { | 1476 if (is_win) { |
| 1476 configs -= [ "//build/config/win:console" ] | 1477 configs -= [ "//build/config/win:console" ] |
| 1477 configs += [ "//build/config/win:windowed" ] | 1478 configs += [ "//build/config/win:windowed" ] |
| 1478 deps += [ "//sandbox" ] | 1479 deps += [ "//sandbox" ] |
| 1479 } | 1480 } |
| 1480 | 1481 |
| 1481 if (is_chromeos) { | 1482 if (is_chromeos) { |
| 1482 deps += [ "//device/bluetooth" ] | 1483 deps += [ "//device/bluetooth" ] |
| 1483 } | 1484 } |
| 1484 } | 1485 } |
| OLD | NEW |