| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "common/material_design/material_design_controller.cc", | 113 "common/material_design/material_design_controller.cc", |
| 114 "common/material_design/material_design_controller.h", | 114 "common/material_design/material_design_controller.h", |
| 115 "common/metrics/gesture_action_type.h", | 115 "common/metrics/gesture_action_type.h", |
| 116 "common/metrics/pointer_metrics_recorder.cc", | 116 "common/metrics/pointer_metrics_recorder.cc", |
| 117 "common/metrics/pointer_metrics_recorder.h", | 117 "common/metrics/pointer_metrics_recorder.h", |
| 118 "common/metrics/user_metrics_action.h", | 118 "common/metrics/user_metrics_action.h", |
| 119 "common/mojo_interface_factory.cc", | 119 "common/mojo_interface_factory.cc", |
| 120 "common/mojo_interface_factory.h", | 120 "common/mojo_interface_factory.h", |
| 121 "common/multi_profile_uma.cc", | 121 "common/multi_profile_uma.cc", |
| 122 "common/multi_profile_uma.h", | 122 "common/multi_profile_uma.h", |
| 123 "common/new_window_client_remote.cc", |
| 124 "common/new_window_client_remote.h", |
| 123 "common/palette_delegate.h", | 125 "common/palette_delegate.h", |
| 124 "common/popup_message.cc", | 126 "common/popup_message.cc", |
| 125 "common/popup_message.h", | 127 "common/popup_message.h", |
| 126 "common/scoped_root_window_for_new_windows.cc", | 128 "common/scoped_root_window_for_new_windows.cc", |
| 127 "common/scoped_root_window_for_new_windows.h", | 129 "common/scoped_root_window_for_new_windows.h", |
| 128 "common/session/session_state_delegate.cc", | 130 "common/session/session_state_delegate.cc", |
| 129 "common/session/session_state_delegate.h", | 131 "common/session/session_state_delegate.h", |
| 130 "common/session/session_state_observer.cc", | 132 "common/session/session_state_observer.cc", |
| 131 "common/session/session_state_observer.h", | 133 "common/session/session_state_observer.h", |
| 132 "common/session/session_types.h", | 134 "common/session/session_types.h", |
| (...skipping 1340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 if (is_win) { | 1475 if (is_win) { |
| 1474 configs -= [ "//build/config/win:console" ] | 1476 configs -= [ "//build/config/win:console" ] |
| 1475 configs += [ "//build/config/win:windowed" ] | 1477 configs += [ "//build/config/win:windowed" ] |
| 1476 deps += [ "//sandbox" ] | 1478 deps += [ "//sandbox" ] |
| 1477 } | 1479 } |
| 1478 | 1480 |
| 1479 if (is_chromeos) { | 1481 if (is_chromeos) { |
| 1480 deps += [ "//device/bluetooth" ] | 1482 deps += [ "//device/bluetooth" ] |
| 1481 } | 1483 } |
| 1482 } | 1484 } |
| OLD | NEW |