| 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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 "//components/device_event_log", | 868 "//components/device_event_log", |
| 869 "//components/onc", | 869 "//components/onc", |
| 870 "//components/session_manager:base", | 870 "//components/session_manager:base", |
| 871 "//components/signin/core/account_id", | 871 "//components/signin/core/account_id", |
| 872 "//components/ui_devtools", | 872 "//components/ui_devtools", |
| 873 "//components/user_manager", | 873 "//components/user_manager", |
| 874 "//components/wallpaper", | 874 "//components/wallpaper", |
| 875 "//media", | 875 "//media", |
| 876 "//net", | 876 "//net", |
| 877 "//services/service_manager/public/cpp", | 877 "//services/service_manager/public/cpp", |
| 878 "//services/ui/public/interfaces", |
| 878 "//skia", | 879 "//skia", |
| 879 "//third_party/icu", | 880 "//third_party/icu", |
| 880 "//ui/accessibility", | 881 "//ui/accessibility", |
| 881 "//ui/app_list/presenter", | 882 "//ui/app_list/presenter", |
| 882 "//ui/aura", | 883 "//ui/aura", |
| 883 "//ui/base", | 884 "//ui/base", |
| 884 "//ui/base:ui_data_pack", | 885 "//ui/base:ui_data_pack", |
| 885 "//ui/base/ime", | 886 "//ui/base/ime", |
| 886 "//ui/compositor", | 887 "//ui/compositor", |
| 887 "//ui/display", | 888 "//ui/display", |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1372 "//ash/public/cpp", | 1373 "//ash/public/cpp", |
| 1373 "//ash/resources", | 1374 "//ash/resources", |
| 1374 "//ash/test:ash_with_aura_test_support", | 1375 "//ash/test:ash_with_aura_test_support", |
| 1375 "//ash/test:test_support_without_content", | 1376 "//ash/test:test_support_without_content", |
| 1376 "//ash/touch_hud", | 1377 "//ash/touch_hud", |
| 1377 "//base", | 1378 "//base", |
| 1378 "//base/test:test_support", | 1379 "//base/test:test_support", |
| 1379 "//components/signin/core/account_id", | 1380 "//components/signin/core/account_id", |
| 1380 "//components/user_manager", | 1381 "//components/user_manager", |
| 1381 "//mojo/edk/system", | 1382 "//mojo/edk/system", |
| 1383 "//services/ui/public/interfaces", |
| 1382 "//skia", | 1384 "//skia", |
| 1383 "//testing/gmock", | 1385 "//testing/gmock", |
| 1384 "//testing/gtest", | 1386 "//testing/gtest", |
| 1385 "//third_party/icu", | 1387 "//third_party/icu", |
| 1386 "//ui/accessibility", | 1388 "//ui/accessibility", |
| 1387 "//ui/app_list/presenter", | 1389 "//ui/app_list/presenter", |
| 1388 "//ui/aura", | 1390 "//ui/aura", |
| 1389 "//ui/aura:test_support", | 1391 "//ui/aura:test_support", |
| 1390 "//ui/base", | 1392 "//ui/base", |
| 1391 "//ui/base:test_support", | 1393 "//ui/base:test_support", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 if (is_win) { | 1505 if (is_win) { |
| 1504 configs -= [ "//build/config/win:console" ] | 1506 configs -= [ "//build/config/win:console" ] |
| 1505 configs += [ "//build/config/win:windowed" ] | 1507 configs += [ "//build/config/win:windowed" ] |
| 1506 deps += [ "//sandbox" ] | 1508 deps += [ "//sandbox" ] |
| 1507 } | 1509 } |
| 1508 | 1510 |
| 1509 if (is_chromeos) { | 1511 if (is_chromeos) { |
| 1510 deps += [ "//device/bluetooth" ] | 1512 deps += [ "//device/bluetooth" ] |
| 1511 } | 1513 } |
| 1512 } | 1514 } |
| OLD | NEW |