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. |
tdanderson
2017/07/17 22:44:36
side note: please re-ping your PM for a specific l
minch1
2017/07/18 03:58:58
Thanks for mention this. I synced with PM about th
tdanderson
2017/07/18 16:38:05
Acknowledged.
| |
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 # Historical note: Ash shipped on Windows for a couple years to support | 10 # Historical note: Ash shipped on Windows for a couple years to support |
11 # Windows 8 Metro mode. Windows support was removed in 2016. | 11 # Windows 8 Metro mode. Windows support was removed in 2016. |
12 assert(is_chromeos) | 12 assert(is_chromeos) |
13 assert(use_aura) | 13 assert(use_aura) |
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
551 "system/tray/tray_popup_utils.h", | 551 "system/tray/tray_popup_utils.h", |
552 "system/tray/tray_utils.cc", | 552 "system/tray/tray_utils.cc", |
553 "system/tray/tray_utils.h", | 553 "system/tray/tray_utils.h", |
554 "system/tray/tri_view.cc", | 554 "system/tray/tri_view.cc", |
555 "system/tray/tri_view.h", | 555 "system/tray/tri_view.h", |
556 "system/tray/view_click_listener.h", | 556 "system/tray/view_click_listener.h", |
557 "system/tray_accessibility.cc", | 557 "system/tray_accessibility.cc", |
558 "system/tray_accessibility.h", | 558 "system/tray_accessibility.h", |
559 "system/tray_caps_lock.cc", | 559 "system/tray_caps_lock.cc", |
560 "system/tray_caps_lock.h", | 560 "system/tray_caps_lock.h", |
561 "system/tray_drag_controller.cc", | |
562 "system/tray_drag_controller.h", | |
561 "system/tray_tracing.cc", | 563 "system/tray_tracing.cc", |
562 "system/tray_tracing.h", | 564 "system/tray_tracing.h", |
563 "system/update/tray_update.cc", | 565 "system/update/tray_update.cc", |
564 "system/update/tray_update.h", | 566 "system/update/tray_update.h", |
565 "system/user/button_from_view.cc", | 567 "system/user/button_from_view.cc", |
566 "system/user/button_from_view.h", | 568 "system/user/button_from_view.h", |
567 "system/user/login_status.cc", | 569 "system/user/login_status.cc", |
568 "system/user/login_status.h", | 570 "system/user/login_status.h", |
569 "system/user/rounded_image_view.cc", | 571 "system/user/rounded_image_view.cc", |
570 "system/user/rounded_image_view.h", | 572 "system/user/rounded_image_view.h", |
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1565 "//content/public/app:both", | 1567 "//content/public/app:both", |
1566 "//device/bluetooth", | 1568 "//device/bluetooth", |
1567 ] | 1569 ] |
1568 | 1570 |
1569 data_deps = [ | 1571 data_deps = [ |
1570 "//ash/strings:ash_test_strings", | 1572 "//ash/strings:ash_test_strings", |
1571 "//ash/resources:ash_test_resources_with_content_100_percent", | 1573 "//ash/resources:ash_test_resources_with_content_100_percent", |
1572 "//ash/resources:ash_test_resources_200_percent", | 1574 "//ash/resources:ash_test_resources_200_percent", |
1573 ] | 1575 ] |
1574 } | 1576 } |
OLD | NEW |