| 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 # 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 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "common/material_design/material_design_controller.cc", | 120 "common/material_design/material_design_controller.cc", |
| 121 "common/material_design/material_design_controller.h", | 121 "common/material_design/material_design_controller.h", |
| 122 "common/metrics/gesture_action_type.h", | 122 "common/metrics/gesture_action_type.h", |
| 123 "common/metrics/pointer_metrics_recorder.cc", | 123 "common/metrics/pointer_metrics_recorder.cc", |
| 124 "common/metrics/pointer_metrics_recorder.h", | 124 "common/metrics/pointer_metrics_recorder.h", |
| 125 "common/metrics/user_metrics_action.h", | 125 "common/metrics/user_metrics_action.h", |
| 126 "common/mojo_interface_factory.cc", | 126 "common/mojo_interface_factory.cc", |
| 127 "common/mojo_interface_factory.h", | 127 "common/mojo_interface_factory.h", |
| 128 "common/multi_profile_uma.cc", | 128 "common/multi_profile_uma.cc", |
| 129 "common/multi_profile_uma.h", | 129 "common/multi_profile_uma.h", |
| 130 "common/new_window_client_proxy.cc", | 130 "common/new_window_controller.cc", |
| 131 "common/new_window_client_proxy.h", | 131 "common/new_window_controller.h", |
| 132 "common/palette_delegate.h", | 132 "common/palette_delegate.h", |
| 133 "common/popup_message.cc", | 133 "common/popup_message.cc", |
| 134 "common/popup_message.h", | 134 "common/popup_message.h", |
| 135 "common/scoped_root_window_for_new_windows.cc", | 135 "common/scoped_root_window_for_new_windows.cc", |
| 136 "common/scoped_root_window_for_new_windows.h", | 136 "common/scoped_root_window_for_new_windows.h", |
| 137 "common/session/session_state_delegate.cc", | 137 "common/session/session_state_delegate.cc", |
| 138 "common/session/session_state_delegate.h", | 138 "common/session/session_state_delegate.h", |
| 139 "common/session/session_state_observer.cc", | 139 "common/session/session_state_observer.cc", |
| 140 "common/session/session_state_observer.h", | 140 "common/session/session_state_observer.h", |
| 141 "common/shelf/app_list_button.cc", | 141 "common/shelf/app_list_button.cc", |
| (...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1508 if (is_win) { | 1508 if (is_win) { |
| 1509 configs -= [ "//build/config/win:console" ] | 1509 configs -= [ "//build/config/win:console" ] |
| 1510 configs += [ "//build/config/win:windowed" ] | 1510 configs += [ "//build/config/win:windowed" ] |
| 1511 deps += [ "//sandbox" ] | 1511 deps += [ "//sandbox" ] |
| 1512 } | 1512 } |
| 1513 | 1513 |
| 1514 if (is_chromeos) { | 1514 if (is_chromeos) { |
| 1515 deps += [ "//device/bluetooth" ] | 1515 deps += [ "//device/bluetooth" ] |
| 1516 } | 1516 } |
| 1517 } | 1517 } |
| OLD | NEW |