| 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_proxy.cc", |
| 124 "common/new_window_client_proxy.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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1485 if (is_win) { | 1487 if (is_win) { |
| 1486 configs -= [ "//build/config/win:console" ] | 1488 configs -= [ "//build/config/win:console" ] |
| 1487 configs += [ "//build/config/win:windowed" ] | 1489 configs += [ "//build/config/win:windowed" ] |
| 1488 deps += [ "//sandbox" ] | 1490 deps += [ "//sandbox" ] |
| 1489 } | 1491 } |
| 1490 | 1492 |
| 1491 if (is_chromeos) { | 1493 if (is_chromeos) { |
| 1492 deps += [ "//device/bluetooth" ] | 1494 deps += [ "//device/bluetooth" ] |
| 1493 } | 1495 } |
| 1494 } | 1496 } |
| OLD | NEW |